You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- Given(/^I visit the calculator page$/) do
- visit '/add'
- end
-
- Given(/^I fill in '(.*)' for '(.*)'$/) do |value, field|
- fill_in(field, with: value)
- end
-
- When(/^I press '(.*)'$/) do |name|
- click_button(name)
- end
-
- Then(/^I should see '(.*)'$/) do |text|
- expect(body).to match(/#{text}/m)
- end
|