Sha256: b429593fcd23e4cddcd3e43337e59f149281bee42c6b5438ec35c4a0d1f9b5c3

Contents?: true

Size: 1.67 KB

Versions: 30

Compression:

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

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

  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

30 entries across 30 versions & 4 rubygems

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