Sha256: 184b793bbe7c7f477f5a55981c95d43bb5aa5cb6bb6319d3dae3929bfa4085f6

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

Feature: Unordered list

  Background:
    Given I am on the static elements page
  
  Scenario: Getting the first element from the unordered list
    When I get the first item from the unordered list
    Then the list item's text should be "Item One"

  Scenario Outline: Locating unordered lists on the page
    When I search for the unordered list by "<search_by>"
    And I get the first item from the list
    Then the list item's text should be "Item One"
  
  Scenarios:
    | search_by |
    | id        |
    | class     |
    | xpath     |  

  @watir_only
  Scenario Outline: Locating unordered lists in Watir only
    When I search for the unordered list by "<search_by>"
    And I get the first item from the list
    Then the list item's text should be "Item One"

  Scenarios:
    | search_by |
    | index     |

  @selenium_only
  Scenario Outline: Locating unordered lists in Selenium only
    When I search for the unordered list by "<search_by>"
    And I get the first item from the list
    Then the list item's text should be "Item One"

  Scenarios:
    | search_by |
    | name      |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
page-object-0.0.4 features/unordered_list.feature