Sha256: 179e12e523f51ee9a10cb74b3fa57ca8b3c7659c88391d51e586bbeb7bc8d9f8

Contents?: true

Size: 974 Bytes

Versions: 3

Compression:

Stored size: 974 Bytes

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
page-object-0.2 features/table_cell.feature
page-object-0.1.1 features/table_cell.feature
page-object-0.1 features/table_cell.feature