trabajo-afectivo/test/browser/switch_to_user_test.rb

48 lines
1.1 KiB
Ruby
Raw Normal View History

# encoding: utf-8
require 'browser_test_helper'
class SwitchToUserTest < TestCase
def test_agent_user
@browser = browser_instance
login(
username: 'master@example.com',
password: 'test',
url: browser_url,
)
tasks_close_all()
2016-09-05 13:18:22 +00:00
click(css: 'a[href="#manage"]')
click(css: '.content.active a[href="#manage/users"]')
set(
css: '.content.active .js-search',
value: 'nicole',
)
sleep 3
@browser.mouse.move_to(@browser.find_elements({ css: '.content.active .table-overview tbody tr:first-child' } )[0])
2015-11-21 06:50:53 +00:00
sleep 0.5
click(
css: '.content.active .icon-switchView',
)
2016-01-25 08:17:49 +00:00
sleep 3
watch_for(
css: '.switchBackToUser',
value: 'zammad looks like',
)
2015-06-08 18:01:31 +00:00
watch_for(
css: '.switchBackToUser',
value: 'Nicole',
2015-06-08 18:01:31 +00:00
)
2016-09-05 13:18:22 +00:00
login = @browser.find_elements({ css: '.user-menu .user a' })[0].attribute('title')
assert_equal(login, 'nicole.braun@zammad.org')
2016-09-05 13:18:22 +00:00
click(css: '.switchBackToUser .js-close')
sleep 5
2016-09-05 13:18:22 +00:00
login = @browser.find_elements({ css: '.user-menu .user a' })[0].attribute('title')
assert_equal(login, 'master@example.com')
end
end