Sha256: c13a6d6849d77b9d2917fa8fc06803a3066a20600f074c44f77aa77c3da60a93

Contents?: true

Size: 866 Bytes

Versions: 2

Compression:

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

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

  Scenarios:
    | search_by |
    | index     |

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

  Scenarios:
    | search_by |
    | name      |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page-object-0.0.5 features/list_item.feature
page-object-0.0.4 features/list_item.feature