Sha256: ea6f8d368d9e2dcd600a101a2f6927cf734bfa204f3867f0684ff45f4fbfe33c

Contents?: true

Size: 1.32 KB

Versions: 9

Compression:

Stored size: 1.32 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 checkbox
    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 locate the check box by "<locate_by>"
    Then I should be able to check the check box

    Examples:
    | locate_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | index     |
    | value     |
    | label     |
    | css       |

  Scenario: Retrieve a CheckBox
    When I retrieve a check box element
    Then I should know it exists
    And I should know it is visible

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

    Examples:
    | param1  | param2  |
    | class   | index   |
    | name    | index   |

  @locator
  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

9 entries across 9 versions & 2 rubygems

Version Path
druid-s-1.0.0 features/checkbox.feature
druid-ts-1.2.6 features/checkbox.feature
druid-ts-1.2.5 features/checkbox.feature
druid-ts-1.2.4 features/checkbox.feature
druid-ts-1.2.3 features/checkbox.feature
druid-ts-1.2.2 features/checkbox.feature
druid-ts-1.2.1 features/checkbox.feature
druid-ts-1.2.0 features/checkbox.feature
druid-ts-1.1.8 features/checkbox.feature