Sha256: da66e82105adc488e7330eebb8920acd26c733a394345fce78125d6cbd8d1c63

Contents?: true

Size: 1.01 KB

Versions: 3

Compression:

Stored size: 1.01 KB

Contents

Feature: Populate Page With
  In order to quickly fill out forms on a page
  A tester will use the populate_page_with method
  To fill in text, select options, check boxes, and select radio buttons

  Background:
    Given I am on the static elements page

  Scenario:
    When I populate the page with the data:
      | text_field_id   | abcDEF            |
      | text_area_id    | abcdefghijklmnop  |
      | select_list_id  | Test 2            |
      | cb_id           | check             |
      | butter_id       | check             |
      | favorite_cheese | muen              |
    Then the text field should contain "abcDEF"
    And the text area should contain "abcdefghijklmnop"
    And the selected option should be "Test 2"
    And the First check box should be selected
    And the "Butter" radio button should be selected
    And the "muen" radio button should be selected in the group
    When I populate the page with the data:
      | select_list_id | option3 |
    Then the selected option should be "Test/Test 3"

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
druid-s-1.0.0 features/populate_page_with.feature
druid-ts-1.2.6 features/populate_page_with.feature
druid-ts-1.2.5 features/populate_page_with.feature