Sha256: 908b96be17336d032e72f87309bdd64f03106319982bc31bc99470390fc628a8

Contents?: true

Size: 268 Bytes

Versions: 4

Compression:

Stored size: 268 Bytes

Contents

step 'I am on the :path' do |path|
  visit path
end

step 'I should see :text' do |text|
  expect(page).to have_content(text)
end

step 'type :text to :field' do |text, field|
  fill_in field, with: text
end

step 'click :button' do |button|
  click_button button
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gnawrnip-0.0.4 example/spec/steps/hello_steps.rb
gnawrnip-0.0.3 example/spec/steps/hello_steps.rb
gnawrnip-0.0.2 example/spec/steps/hello_steps.rb
gnawrnip-0.0.1 example/spec/steps/hello_steps.rb