Sha256: 2fa805ba224154508a896c9053ec8d2e8ea86f73befb1aa5ff0fc3498a3fb1d0

Contents?: true

Size: 993 Bytes

Versions: 4

Compression:

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

  @name
  Scenario Outline: Locating list items on the page
    When I locate the list item by "<locate_by>"
    Then the text should be "Item One"

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

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

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

  @locator
  Scenario: Finding a list item dynamically
    When I search for the list item while the script is executing
    Then I should see that the list item exists
    And the text should be "Item One"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
druid-ts-1.2.2 features/list_item.feature
druid-ts-1.2.1 features/list_item.feature
druid-ts-1.2.0 features/list_item.feature
druid-ts-1.1.8 features/list_item.feature