Sha256: 0c2f5cd4b962440fb8ed6fba27d56879ac70b004ee723ef4c9c7c24bba080082

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 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 an element on the select list
    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     |

  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
      

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
page-object-0.2.4 features/check_box.feature
page-object-0.2.3 features/check_box.feature
page-object-0.2.2 features/check_box.feature
page-object-0.2.1 features/check_box.feature