Sha256: c8b25bc97376a997f7a5d220f16ef420549eb17d545b49acc3aedae51ad3f427

Contents?: true

Size: 1.75 KB

Versions: 3

Compression:

Stored size: 1.75 KB

Contents

Feature: Ability to Support Table Web Objects

  Scenario: Reference a table
    When on the object test page
    Then the atomic elements table should exist
    And the atomic elements table should be visible
    And the atomic elements table should be a table object

  Scenario: Reference a table cell
    When on the object test page
    Then the savings value cell for January should exist
    And the savings value cell for January should be visible
    And the savings value cell for January should be a table cell object

  Scenario: Get text from a table cell
    When on the object test page
    Then the savings value cell for January should be "$100"
    And the savings value cell for February should be "$80"

  Scenario: Collect information from a table
    When getting information from the atomic elements table
    Then the data for row "1" should be "Element", "Symbol", and "Atomic Number"
    And the data for row "2" should be "Carbon", "C", and "6"
    And the atomic elements table should have "5" rows
    And row "1" should have "3" columns
    And the data for the first row should be "Element", "Symbol", and "Atomic Number"
    And the data for the last row should be "Xenon", "Xe", and "54"

  Scenario: Get information from a table by named column and row
    When getting information from the atomic elements table
    Then the symbol for carbon should be "C"
    
  Scenario: Get information from a table with invalid row information
    When getting information from the atomic elements table
    Then the data for row "testing" should be unavailable
    
  Scenario: Get information from a table with invalid column information
    When getting information from the atomic elements table
    Then the data for column "QA" and row "Element" should be unavailable

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
symbiont-0.1.7 specs/table.feature
symbiont-0.1.6 specs/table.feature
symbiont-0.1.5 specs/table.feature