Sha256: f501337e06a9e09b7a1833d58bbc631779aefc4b82a458ddb0c675cf55c508cb

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

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

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

  @selenium_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 |
    | name      |

  Scenario: Retrieve a cell from a table by id
    When I retrieve table cell
    Then I should know it exists
    And I should know it is visible


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
page-object-0.0.5 features/table_cell.feature
page-object-0.0.4 features/table_cell.feature
page-object-0.0.3 features/table_cell.feature
page-object-0.0.2 features/table_cell.feature