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.

add_steps.rb 295 B

2 years ago
123456789101112131415
  1. Given(/^I visit the calculator page$/) do
  2. visit '/add'
  3. end
  4. Given(/^I fill in '(.*)' for '(.*)'$/) do |value, field|
  5. fill_in(field, with: value)
  6. end
  7. When(/^I press '(.*)'$/) do |name|
  8. click_button(name)
  9. end
  10. Then(/^I should see '(.*)'$/) do |text|
  11. expect(body).to match(/#{text}/m)
  12. end

No Description

Contributors (1)