Sha256: 9085ad4a3400e6905e51ae3bc60071c1b25c535849a4d90c2f288ecedb40dffa

Contents?: true

Size: 1.22 KB

Versions: 5

Compression:

Stored size: 1.22 KB

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'

    Scenarios:
      | search_by |
      | id        |
      | class     |
      | xpath     |
      | css       |


  @watir_only
  Scenario: Locating table rows on the Page by text
    When I search for the table row by "text"
    Then the row data should be 'Data1 Data2'

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

    Scenarios:
      | search_by |
      | 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

5 entries across 5 versions & 2 rubygems

Version Path
page-object-1.2.0 features/table_row.feature
page-object-1.1.1 features/table_row.feature
page_object-1.1.3 features/table_row.feature
page_object-1.1.2 features/table_row.feature
page_object-1.1.1 features/table_row.feature