Sha256: 039b797f4ce0cab0440ed517d32626cf7fde31554951d055ab303b130238ef22

Contents?: true

Size: 1.27 KB

Versions: 16

Compression:

Stored size: 1.27 KB

Contents

Feature: Check Box
  In order to interact with check boxes
  Testers will need access and interrogation ability


  Background:
    Given I am on the static elements page

  Scenario: Selecting a check box
    When I select the First check box
    Then the First check box should be selected
    When I unselect the First check box
    Then the First check box should not be selected

  Scenario Outline: Locating check boxes on the page
    When I search for the check box by "<search_by>"
    Then I should be able to check the check box

  Scenarios:
    | search_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | index     |
    | value     |

  Scenario Outline: Locating check boxes using multiple parameters
    When I search for the check box by "<param1>" and "<param2>"
    Then I should be able to check the check box

  Scenarios:
    | param1 | param2 |
    | class  | index  |
    | name   | index  |

  Scenario: Retrieve a CheckBox
    When I retrieve a check box element
    Then I should know it exists
    And I should know it is visible
      
  Scenario: Finding a check box dynamically
    When I select the first check box while the script is executing
    Then I should see that the checkbox exists
    And the First check box should be selected

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
page-object-0.7.5.1 features/check_box.feature
page-object-0.7.5 features/check_box.feature
page-object-0.7.4 features/check_box.feature
page-object-0.7.3 features/check_box.feature
page-object-0.7.2 features/check_box.feature
page-object-0.7.1 features/check_box.feature
page-object-0.7.0 features/check_box.feature
page-object-0.6.9 features/check_box.feature
page-object-0.6.8 features/check_box.feature
page-object-0.6.7 features/check_box.feature
page-object-0.6.6 features/check_box.feature
page-object-0.6.5 features/check_box.feature
page-object-0.6.4 features/check_box.feature
page-object-0.6.3 features/check_box.feature
page-object-0.6.2 features/check_box.feature
page-object-0.6.1 features/check_box.feature