Sign up for FlowVella
Sign up with FacebookAlready have an account? Sign in now
By registering you are agreeing to our
Terms of Service
Loading Flow
Capybara
visit('/projects') find(:xpath, "//table/tr").click all('a')
click_link('Link Text') click_button('Save') click_on('Button Value')
fill_in('First Name', :with => 'John') choose('A Radio Button')
check('A Checkbox') uncheck('A Checkbox')
attach_file('Image', '/path/to/image.jpg')
select('Option', :from => 'Select Box')
page.has_selector?('table tr') page.has_xpath?('//table/tr')
page.has_css?('table tr.foo') page.has_content?('foo')
page.execute_script("$('body').empty()")
expect(page).to have_xpath('//table/tr')
expect(page).to have_css('table tr.foo')
Framework modification