Sha256: 2f5b6976c6a1ebe101ab7c8ed4e31c4f4a9609b489813027a3e0448f1a32b555

Contents?: true

Size: 981 Bytes

Versions: 4

Compression:

Stored size: 981 Bytes

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 items 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 items text should be "Item One"
    And the list should contain 3 items
    And each item should contain "Item"

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

  Scenario Outline: Locating unordered lists using multiple parameters
    When I search for the unordered list by "<param1>" and "<param2>"
    And I get the first item from the list
    Then the list items 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/unordered_list.feature
page-object-0.2.3 features/unordered_list.feature
page-object-0.2.2 features/unordered_list.feature
page-object-0.2.1 features/unordered_list.feature