Sha256: ad62e378bb8400657eb207996f5cc0fd19b8742e5aa6f084fa6f99c556847162

Contents?: true

Size: 867 Bytes

Versions: 7

Compression:

Stored size: 867 Bytes

Contents

Feature: Table Row

  Background:
    Given I am on the static elements page

  Scenario: Retrieving the text from a table row
    When I retrieve the data from the table row
    Then the row data should be "Data1 Data2"

  Scenario Outline: Locating table rows on the Page
    When I search for the table row by "<search_by>"
    Then the row data should be "Data1 Data2"

  Examples:
  | search_by |
  | id        |
  | class     |
  | xpath     |
  | css       |
  | text      |
  | index     |

  Scenario: Locating table row using multiple parameters
    When I retrieve a table row element by "class" and "index"
    Then the row data should be "Data1 Data2"

  Scenario: Finding a table row dynamically
    When I retrieve a table row element while the script is executing
    Then I should see that the row exists
    And the row data should be "Data1 Data2"

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
druid-s-1.0.0 features/table_row.feature
druid-ts-1.2.6 features/table_row.feature
druid-ts-1.2.5 features/table_row.feature
druid-ts-1.2.4 features/table_row.feature
druid-ts-1.2.3 features/table_row.feature
druid-ts-1.2.2 features/table_row.feature
druid-ts-1.2.1 features/table_row.feature