forked from teamcapybara/capybara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capybara.feature
33 lines (27 loc) · 856 Bytes
/
capybara.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Feature: Capybara's cucumber integration
In order to integrate with the lovely plain text testing framework
As Capybara
I want to integrate successfully with Cucumber
Scenario: hello world
When I visit the root page
Then I should see "Hello world!"
@javascript
Scenario: javascript tag
When I visit the root page
Then Capybara should use the "selenium" driver
@selenium
Scenario: selenium tag
When I visit the root page
Then Capybara should use the "selenium" driver
@selenium
Scenario Outline: selenium tag with scenario outline
When I visit the <Page> page
Then Capybara should use the "selenium" driver
Examples:
| Page |
| root |
| home |
Scenario: matchers
When I visit the root page
And I use a matcher that fails
Then the failing exception should be nice