Sha256: 4e8b7ecae283a2f6dc2ebf16f4cacaeca2ffbdfdcfc261e925153a50d6e5622d
Contents?: true
Size: 734 Bytes
Versions: 16
Compression:
Stored size: 734 Bytes
Contents
When /^(?:|I )fill in the name field of the 1st task with "([^"]*)"$/ do |value| find(:xpath, '/html/body/div[2]/div/div/div[2]/div[2]/form/fieldset//input[1]').set(value) end When /^(?:|I )fill in the text field of the 1st task with "([^"]*)"$/ do |value| find(:xpath, '/html/body/div[2]/div/div/div[2]/div[2]/form/fieldset//textarea[1]').set(value) end When /^(?:|I )fill in the name field of the 2nd task with "([^"]*)"$/ do |value| find(:xpath, '/html/body/div[2]/div/div/div[2]/div[2]/form/div[3]/fieldset//input[1]').set(value) end When /^(?:|I )fill in the text field of the 2nd task with "([^"]*)"$/ do |value| find(:xpath, '/html/body/div[2]/div/div/div[2]/div[2]/form/div[3]/fieldset//textarea[1]').set(value) end
Version data entries
16 entries across 16 versions & 1 rubygems