Sha256: fe34434fd3d629a75778e3186037340534e0b625ed75e3487845396e9bf595bb

Contents?: true

Size: 1.11 KB

Versions: 16

Compression:

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

  @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 the cell data should be 'Data4'

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
page-object-0.6 features/table_cell.feature
page-object-0.5.5 features/table_cell.feature
page-object-0.5.4 features/table_cell.feature
page-object-0.5.3 features/table_cell.feature
page-object-0.5.2 features/table_cell.feature
page-object-0.5.1 features/table_cell.feature
page-object-0.5.0 features/table_cell.feature
page-object-0.4.4 features/table_cell.feature
page-object-0.4.3 features/table_cell.feature
page-object-0.4.2 features/table_cell.feature
page-object-0.4.1 features/table_cell.feature
page-object-0.4.0 features/table_cell.feature
page-object-0.3.2 features/table_cell.feature
page-object-0.3.1 features/table_cell.feature
page-object-0.3.0 features/table_cell.feature
page-object-0.2.5 features/table_cell.feature