Sha256: a1cc0c03413008c0b7183e79b2c264935f9d565e6d9f7ff559970e17e31e6035

Contents?: true

Size: 1.61 KB

Versions: 8

Compression:

Stored size: 1.61 KB

Contents

Feature: Ability to Support Checkbox Web Objects

  Scenario: Reference a button
    When on the object test page
    Then the organic circuitry checkbox should exist
    And the organic circuitry checkbox should be visible
    And the organic circuitry checkbox should be enabled
    And the organic circuitry checkbox should be a checkbox object

  Scenario: Modify checkbox and check state
    When organic circuitry is not chosen as the futuristic technology
    Then the organic circuitry checkbox should be unchecked
    When organic circuitry is chosen as the futuristic technology
    Then the organic circuitry checkbox should be checked
    When organic circuitry is not chosen as the futuristic technology
    Then the organic circuitry checkbox should be unchecked
  
  Scenario: Handling a non-existent checkbox
    When on the object test page
    Then the fake checkbox should not exist
    But the fake checkbox should be a checkbox object

  Scenario: Handling a disabled checkbox
    When on the object test page
    Then the preferential eigenstate selector checkbox should exist
    And the preferential eigenstate selector checkbox should be visible
    And the preferential eigenstate selector checkbox should be a checkbox object
    But the preferential eigenstate selector checkbox should not be enabled

  Scenario Outline: Finding buttons with locators
    When the kinetic harpoon checkbox on the object test page is checked by "<locator>"
    Then the kinetic harpoon checkbox should be checked
    
    Scenarios:
      | locator |
      | id      |
      | name    |
      | class   |
      | xpath   |
      | index   |

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
symbiont-0.1.7 specs/checkbox.feature
symbiont-0.1.6 specs/checkbox.feature
symbiont-0.1.5 specs/checkbox.feature
symbiont-0.1.4 specs/checkbox.feature
symbiont-0.1.3 specs/checkbox.feature
symbiont-0.1.2 specs/checkbox.feature
symbiont-0.1.1 specs/checkbox.feature
symbiont-0.1.0 specs/checkbox.feature