Sha256: 36e1663b6934f9708eb2979d9fc3a730055811c22904bad0be19dab8f5e1707e

Contents?: true

Size: 880 Bytes

Versions: 16

Compression:

Stored size: 880 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  |

  Scenario: Finding a list item dynamically
    When I search for the list item while the script is executing
    Then the text should be "Item One"

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
page-object-0.6 features/list_item.feature
page-object-0.5.5 features/list_item.feature
page-object-0.5.4 features/list_item.feature
page-object-0.5.3 features/list_item.feature
page-object-0.5.2 features/list_item.feature
page-object-0.5.1 features/list_item.feature
page-object-0.5.0 features/list_item.feature
page-object-0.4.4 features/list_item.feature
page-object-0.4.3 features/list_item.feature
page-object-0.4.2 features/list_item.feature
page-object-0.4.1 features/list_item.feature
page-object-0.4.0 features/list_item.feature
page-object-0.3.2 features/list_item.feature
page-object-0.3.1 features/list_item.feature
page-object-0.3.0 features/list_item.feature
page-object-0.2.5 features/list_item.feature