Sha256: 46c5c74eff3b69910b0945441559ecae86545f3497259591921973b214e38b6a

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 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'

  @name
  Scenario Outline: Locating table cells on the Page
    When I locate the table cell by "<locate_by>"
    Then the cell data should be 'Data4'

    Examples:
    | locate_by |
    | id        |
    | class     |
    | xpath     |
    | index     |
    | text      |
    | css       |

  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

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

    Examples:
    | param1  | param2  |
    | class   | index   |

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

5 entries across 5 versions & 2 rubygems

Version Path
druid-s-1.0.0 features/table_cell.feature
druid-ts-1.2.6 features/table_cell.feature
druid-ts-1.2.5 features/table_cell.feature
druid-ts-1.2.4 features/table_cell.feature
druid-ts-1.2.3 features/table_cell.feature