Sha256: 09a7fa589db1525d467f3e5673158c0d47d59a27846241ca7de0b6e522ddee32

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

Feature: Radio Button Groups
  In order to interact with radio button groups
  Testers will need access and interrogation ability


  Background:
    Given I am on the static elements page

  Scenario: Confirm existence of a radio button group
    Then I should see that the radio button group exists

  Scenario: No radio buttons in the group have been selected
    When no radio buttons have been selected
    Then no radio buttons should be selected in the group

  Scenario: Selecting grouped radio buttons by value
    When I select the "ched" radio button in the group
    Then the "ched" radio button should be selected in the group
    Then the "emmen" radio button should not be selected
    Then the "muen" radio button should not be selected
    When I select the "muen" radio button in the group
    Then the "ched" radio button should not be selected
    Then the "emmen" radio button should not be selected
    Then the "muen" radio button should be selected in the group

  Scenario: Getting an array of elements for each radio button in the group
    When I ask for the elements of a radio button group
    Then I should have an array with elements for each radio button
    And the radio button element values should be "ched", "emmen", "muen"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
page-object-0.9.7 features/radio_button_group.feature
page-object-0.9.6 features/radio_button_group.feature
page-object-0.9.5 features/radio_button_group.feature