Skip to content

Instantly share code, notes, and snippets.

@greghoggard
Created November 9, 2017 18:42
Show Gist options
  • Select an option

  • Save greghoggard/7d46a5c85a27bcf207e7345b560a8388 to your computer and use it in GitHub Desktop.

Select an option

Save greghoggard/7d46a5c85a27bcf207e7345b560a8388 to your computer and use it in GitHub Desktop.
transaction '01_my_site_visit_home_page' do
visit '/' do
assert contains: 'Welcome to my site'
end
end
transaction '02_my_site_login' do
submit '/login', {
fill_in: {
'utf8' => '%E2%9C%93',
'authenticity_token' => '${authenticity_token}',
'user[name]' => 'Timmy',
'user[password]' => 'Tables',
'commit' => 'Sign In'
}
}
end
end
end.jmx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment