12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # encoding: utf-8
- require 'browser_test_helper'
- class PreferencesTest < TestCase
- def test_preferences
- tests = [
- {
- :name => 'preferences',
- :action => [
- {
- :execute => 'click',
- :css => 'a[href="#current_user"]',
- },
- {
- :execute => 'click',
- :css => 'a[href="#profile"]',
- },
- {
- :execute => 'click',
- :css => 'a[href="#profile/language"]',
- },
- {
- :execute => 'select',
- :css => '.language_item select[name="locale"]',
- :value => 'Deutsch',
- },
- {
- :execute => 'click',
- :css => '.content button[type="submit"]',
- },
- {
- :execute => 'watch_for',
- :area => 'body',
- :value => 'Sprache',
- },
- {
- :execute => 'select',
- :css => '.language_item select[name="locale"]',
- :value => 'English (United States)',
- },
- {
- :execute => 'click',
- :css => '.content button[type="submit"]',
- },
- {
- :execute => 'watch_for',
- :area => 'body',
- :value => 'Language',
- },
- ],
- },
- ]
- browser_signle_test_with_login(tests)
- end
- end
|