Added signup browser test.
This commit is contained in:
parent
97377bf138
commit
b899c03f93
1 changed files with 87 additions and 0 deletions
87
test/browser/signup.rb
Normal file
87
test/browser/signup.rb
Normal file
|
@ -0,0 +1,87 @@
|
|||
# encoding: utf-8
|
||||
require 'browser_test_helper'
|
||||
|
||||
class Signup < ActiveSupport::TestCase
|
||||
test 'signup' do
|
||||
signup_user_email = 'signup-test-' + rand(999999).to_s + '@example.com'
|
||||
tests = [
|
||||
{
|
||||
:name => 'start',
|
||||
:instance => Watir::Browser.new,
|
||||
:url => 'http://localhost:3000',
|
||||
:action => [
|
||||
{
|
||||
:execute => 'click',
|
||||
:css => 'a[href="#signup"]',
|
||||
},
|
||||
{
|
||||
:execute => 'wait',
|
||||
:value => 1,
|
||||
},
|
||||
{
|
||||
:execute => 'check',
|
||||
:css => '#form-signup',
|
||||
:result => true,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
:name => 'signup',
|
||||
:action => [
|
||||
{
|
||||
:execute => 'set',
|
||||
:css => 'input[name="firstname"]',
|
||||
:value => 'Signup Firstname',
|
||||
},
|
||||
{
|
||||
:execute => 'set',
|
||||
:css => 'input[name="lastname"]',
|
||||
:value => 'Signup Lastname',
|
||||
},
|
||||
{
|
||||
:execute => 'set',
|
||||
:css => 'input[name="email"]',
|
||||
:value => signup_user_email,
|
||||
},
|
||||
{
|
||||
:execute => 'set',
|
||||
:css => 'input[name="password"]',
|
||||
:value => 'some-pass',
|
||||
},
|
||||
{
|
||||
:execute => 'set',
|
||||
:css => 'input[name="password_confirm"]',
|
||||
:value => 'some-pass',
|
||||
},
|
||||
{
|
||||
:execute => 'click',
|
||||
:css => 'button.submit',
|
||||
},
|
||||
{
|
||||
:execute => 'wait',
|
||||
:value => 3,
|
||||
},
|
||||
|
||||
# check action
|
||||
{
|
||||
:execute => 'check',
|
||||
:css => '#login',
|
||||
:result => false,
|
||||
},
|
||||
{
|
||||
:execute => 'check',
|
||||
:css => '#form-signup',
|
||||
:result => false,
|
||||
},
|
||||
{
|
||||
:execute => 'match',
|
||||
:css => 'body',
|
||||
:value => signup_user_email,
|
||||
:match_result => true,
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
browser_single_test(tests)
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue