Skip to content

Commit

Permalink
test to select value from select_list with forward slash
Browse files Browse the repository at this point in the history
  • Loading branch information
cheezy committed Jun 1, 2014
1 parent 6b69f30 commit b8c943c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions features/html/static_elements.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<select name="sel_list_name" id="sel_list_id" class="sel_list_class">
<option value="option1">Test 1</option>
<option value="option2">Test 2</option>
<option value="option3">Test/Test 3</option>
</select>

<select multiple="multiple" id="sel_list_multiple">
Expand Down
4 changes: 4 additions & 0 deletions features/select_list.feature
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Feature: Select List
Scenario: Selecting an element on the select list
When I select "Test 2" from the select list
Then the current item should be "Test 2"

Scenario: Selecting an element when there is a forward slash
When I select "Test/Test 3" from the select list
Then the current item should be "Test/Test 3"

Scenario Outline: Locating select lists on the Page
When I search for the select list by "<search_by>"
Expand Down

0 comments on commit b8c943c

Please sign in to comment.