Added browser test for preferences.
This commit is contained in:
parent
7759cd617b
commit
85889010e8
1 changed files with 96 additions and 0 deletions
96
test/browser/prefereces.rb
Normal file
96
test/browser/prefereces.rb
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
require 'browser_test_helper'
|
||||||
|
|
||||||
|
class Preferences < ActiveSupport::TestCase
|
||||||
|
test 'preferences' do
|
||||||
|
tests = [
|
||||||
|
{
|
||||||
|
:name => 'preferences',
|
||||||
|
:action => [
|
||||||
|
{
|
||||||
|
:execute => 'click',
|
||||||
|
:element => :link,
|
||||||
|
:href => '#current_user',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'click',
|
||||||
|
:element => :link,
|
||||||
|
:href => '#profile',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'wait',
|
||||||
|
:value => 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'click',
|
||||||
|
:element => :link,
|
||||||
|
:href => '#profile/language',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'wait',
|
||||||
|
:value => 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'check',
|
||||||
|
:element => :div,
|
||||||
|
:id => 'language',
|
||||||
|
:result => true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'wait',
|
||||||
|
:value => 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'select',
|
||||||
|
:element => :select_list,
|
||||||
|
:name => 'locale',
|
||||||
|
:value => 'Deutsch',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'click',
|
||||||
|
:element => :button,
|
||||||
|
:type => 'submit',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'wait',
|
||||||
|
:value => 5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'check',
|
||||||
|
:element => :form,
|
||||||
|
:id => 'login',
|
||||||
|
:result => false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'match',
|
||||||
|
:element => :body,
|
||||||
|
:value => 'Sprache',
|
||||||
|
:match_result => true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'select',
|
||||||
|
:element => :select_list,
|
||||||
|
:name => 'locale',
|
||||||
|
:value => 'English (United States)',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'click',
|
||||||
|
:element => :button,
|
||||||
|
:type => 'submit',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'wait',
|
||||||
|
:value => 5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
:execute => 'match',
|
||||||
|
:element => :body,
|
||||||
|
:value => 'Language',
|
||||||
|
:match_result => true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]
|
||||||
|
browser_signle_test_with_login(tests)
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue