Sha256: 9cb0c4d2072ec40fdbd9ae4852d1eaa49cfe7ece28dc96907c3def2f8d7b8bc3

Contents?: true

Size: 1.17 KB

Versions: 28

Compression:

Stored size: 1.17 KB

Contents

Feature: Table Cell


  Background:
    Given I am on the static elements page

  Scenario: Retrieving the text from a table cell
    When I retrieve the data from the table cell
    Then the cell data should be 'Data4'

  Scenario Outline: Locating table cells on the Page
    When I search for the table cell by "<search_by>"
    Then the cell data should be 'Data4'

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

  @watir_only
  Scenario Outline: Locating table cells on the Page with watir
    When I search for the table cell by "<search_by>"
    Then the cell data should be 'Data4'

  Scenarios:
    | search_by |
    | index     |

  Scenario Outline: Locating table cell using multiple parameters
    When I retrieve a table cell element by "<param1>" and "<param2>"
    Then the cell data should be 'Data4'

  Scenarios:
    | param1 | param2 |
    | class  | index  |
    | name   | index  |

  Scenario: Finding a table cell dynamically
    When I retrieve a table cell element while the script is executing
    Then I should see that the cell exists
    And the cell data should be 'Data4'

Version data entries

28 entries across 28 versions & 4 rubygems

Version Path
page-object-1.2.0 features/table_cell.feature
page-object-1.1.1 features/table_cell.feature
page_object-1.1.3 features/table_cell.feature
page_object-1.1.2 features/table_cell.feature
page_object-1.1.1 features/table_cell.feature
page-object-1.1.0 features/table_cell.feature
page-object-lds-0.0.14 features/table_cell.feature
page-object-lds-0.0.13 features/table_cell.feature
page-object-lds-0.0.12 features/table_cell.feature
page-object-lds-0.0.11 features/table_cell.feature
page-object-lds-0.0.1 features/table_cell.feature
page-object-1.0.3 features/table_cell.feature
meeane-page-object-0.1.11 features/table_cell.feature
page-object-1.0.2 features/table_cell.feature
page-object-1.0.1 features/table_cell.feature
page-object-1.0 features/table_cell.feature
page-object-0.9.8 features/table_cell.feature
page-object-0.9.7 features/table_cell.feature
page-object-0.9.6 features/table_cell.feature
page-object-0.9.5 features/table_cell.feature