Sha256: 2be46319e1cd927ea1bd606055829439794ac3a4a7478411785b1eeb6e65839a

Contents?: true

Size: 730 Bytes

Versions: 4

Compression:

Stored size: 730 Bytes

Contents

Feature: List item

  Background:
    Given I am on the static elements page

  Scenario: Getting the text from a list item
    When I get the text from the list item
    Then the text should be "Item One"

  Scenario Outline: Locating list items on the page
    When I search for the list item by "<search_by>"
    Then the text should be "Item One"

  Scenarios:
    | search_by |
    | id        |
    | class     |
    | xpath     |
    | index     |
    | name      |

  Scenario Outline: Locating list items using multiple parameters
    When I search for the list item by "<param1>" and "<param2>"
    Then the text should be "Item One"

  Scenarios:
    | param1 | param2 |
    | class  | index  |
    | name   | index  |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
page-object-0.2.4 features/list_item.feature
page-object-0.2.3 features/list_item.feature
page-object-0.2.2 features/list_item.feature
page-object-0.2.1 features/list_item.feature