2011-02-06 08:34:32 -05:00
|
|
|
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
|
2011-02-06 08:44:43 -05:00
|
|
|
|
2011-02-24 07:09:59 -05:00
|
|
|
@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 |
|
|
|
|
|
2011-02-06 08:44:43 -05:00
|
|
|
Scenario: matchers
|
|
|
|
When I visit the root page
|
|
|
|
And I use a matcher that fails
|
|
|
|
Then the failing exception should be nice
|