Sha256: 014cd3bbe4a07e67fc89f24ddc843aefaf9b9983821a851c05334912a101c9cd

Contents?: true

Size: 1.39 KB

Versions: 16

Compression:

Stored size: 1.39 KB

Contents

Feature: Radio Buttons
  In order to interact with radio buttons
  Testers will need access and interrogation ability


  Background:
    Given I am on the static elements page

  Scenario: Selecting and clearing a radio button
    When I select the "Milk" radio button
    Then the "Milk" radio button should be selected
    When I select the "Butter" radio button
    Then the "Butter" radio button should be selected

  Scenario Outline: Locating radio buttons on the Page
    When I search for the radio button by "<search_by>"
    And I select the radio button
    Then the "Milk" radio button should be selected

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

  Scenario Outline: Locating radio buttons using multiple parameters
    When I search for the radio button by "<param1>" and "<param2>"
    And I select the radio button
    Then the "Milk" radio button should be selected

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

  Scenario: Retrieve a radio button
    When I retrieve a radio button
    Then I should know it exists
    And I should know it is visible

  Scenario: Finding a radio button dynamically
    When I select the radio button while the script is executing
    Then I should see that the radio button exists
    And the "Milk" radio button should be selected

Version data entries

16 entries across 16 versions & 1 rubygems

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