teamcapybara--capybara/features/capybara.feature

24 lines
644 B
Gherkin
Raw Normal View History

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
Scenario: matchers
When I visit the root page
And I use a matcher that fails
Then the failing exception should be nice