You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
click_link('id-of-link')click_link('Link Text')click_button('Save')click('Link Text')# Click either a link or a buttonclick('Button Value')
Interacting with forms
fill_in('First Name',:with=>'John')fill_in('Password',:with=>'Seekrit')fill_in('Description',:with=>'Really Long Text…')choose('A Radio Button')check('A Checkbox')uncheck('A Checkbox')attach_file('Image','/path/to/image.jpg')select('Option',:from=>'Select Box')