Sha256: 51ebcb281fece033e088707c6333b177dc5987ef8429f0916f2f53ac3c97a97d

Contents?: true

Size: 975 Bytes

Versions: 3

Compression:

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

  @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

3 entries across 3 versions & 1 rubygems

Version Path
druid-ts-1.1.7 features/list_item.feature
druid-ts-1.1.6 features/list_item.feature
druid-ts-1.1.5 features/list_item.feature