Sha256: 483edd1ed94c5c0173ced686c351ff76c421ca4f39766253d984fbfb1e84c946

Contents?: true

Size: 1.22 KB

Versions: 2

Compression:

Stored size: 1.22 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"

  @name
  Scenario Outline: Locating unordered lists on the page
    When I locate the unordered list by "<locate_by>"
    And I get the first item from the list
    Then the list item's text should be "Item One"
    And the list should contain 3 items
    And each item should contain "Item"

  Examples:
    | locate_by |
    | id        |
    | class     |
    | xpath     |
    | index     |
    | name      |

  @multi
  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"

    Examples:
    | param1  | param2  |
    | class   | index   |
    | name    | index   |
    | class   | name    |

  @locator
  Scenario: Finding a unordered list dynamically
    When I search for the unordered list while the script is executing
    And I get the first item from the list
    Then the list items text should be "Item One"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
druid-ts-1.1.1 features/unordered_list.feature
druid-ts-1.1.0 features/unordered_list.feature