Sha256: f4d777623ddd908ce67220e6270defc08fc66ca50de2fde4e8cde6d5c82dcfb4

Contents?: true

Size: 1.02 KB

Versions: 5

Compression:

Stored size: 1.02 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     |  

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

  Scenarios:
    | search_by |
    | 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

5 entries across 5 versions & 1 rubygems

Version Path
page-object-0.0.5 features/check_box.feature
page-object-0.0.4 features/check_box.feature
page-object-0.0.3 features/check_box.feature
page-object-0.0.2 features/check_box.feature
page-object-0.0.1 features/check_box.feature