Sha256: c30d7854eb6ab1e2637698a5fb149b04ac2f888fbf250ff25c309d310e28bd28

Contents?: true

Size: 1.5 KB

Versions: 30

Compression:

Stored size: 1.5 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     |
    | label     |

  @selenium_only
  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 |
    | css       |

  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

30 entries across 30 versions & 4 rubygems

Version Path
page-object-1.2.0 features/check_box.feature
page-object-1.1.1 features/check_box.feature
page_object-1.1.3 features/check_box.feature
page_object-1.1.2 features/check_box.feature
page_object-1.1.1 features/check_box.feature
page-object-1.1.0 features/check_box.feature
page-object-lds-0.0.14 features/check_box.feature
page-object-lds-0.0.13 features/check_box.feature
page-object-lds-0.0.12 features/check_box.feature
page-object-lds-0.0.11 features/check_box.feature
page-object-lds-0.0.1 features/check_box.feature
page-object-1.0.3 features/check_box.feature
meeane-page-object-0.1.11 features/check_box.feature
page-object-1.0.2 features/check_box.feature
page-object-1.0.1 features/check_box.feature
page-object-1.0 features/check_box.feature
page-object-0.9.8 features/check_box.feature
page-object-0.9.7 features/check_box.feature
page-object-0.9.6 features/check_box.feature
page-object-0.9.5 features/check_box.feature