123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- # encoding: utf-8
- require 'browser_test_helper'
- class KeyboardShortcutsTest < TestCase
- def test_navigation
- @browser = browser_instance
- login(
- username: 'master@example.com',
- password: 'test',
- url: browser_url,
- )
- tasks_close_all()
- sleep 2
- # show shortkeys
- shortcut(key: 'h')
- # ff issue, sometimes shortcut is not fired in browser test env
- if ENV['BROWSER'] && ENV['BROWSER'] =~ /firefox/i
- exists = false
- (1..4).each { |_count|
- sleep 1
- next if !@browser.find_elements(css: '.modal')[0]
- exists = true
- }
- if !exists
- reload
- sleep 4
- shortcut(key: 'h')
- (1..4).each { |_count|
- sleep 1
- next if !@browser.find_elements(css: '.modal')[0]
- exists = true
- }
- end
- if !exists
- shortcut(key: 'h')
- end
- end
- watch_for(
- css: '.modal',
- value: 'Keyboard Shortcuts',
- timeout: 6,
- )
- # hide shortkeys
- shortcut(key: 'h')
- watch_for_disappear(
- css: '.modal',
- value: 'Keyboard Shortcuts',
- timeout: 2,
- )
- # show shortkeys
- shortcut(key: 'h')
- watch_for(
- css: '.modal',
- value: 'Keyboard Shortcuts',
- timeout: 2,
- )
- # show notifications
- shortcut(key: 'a')
- watch_for(
- css: '.js-notificationsContainer .js-header',
- value: 'Notification',
- timeout: 10,
- )
- shortcut(key: 'a')
- watch_for_disappear(
- css: '.js-notificationsContainer .js-header',
- value: 'Notification',
- timeout: 2,
- )
- # go to overviews
- shortcut(key: 'o')
- watch_for(
- css: '.active.content',
- value: 'My assigned Tickets',
- timeout: 2,
- )
- # go to dashboard
- shortcut(key: 'd')
- watch_for(
- css: '.active.content',
- value: 'My Stats',
- timeout: 2,
- )
- # go to new ticket
- shortcut(key: 'n')
- watch_for(
- css: '.active.content',
- value: 'New Ticket',
- timeout: 2,
- )
- # close again
- shortcut(key: 'w')
- watch_for_disappear(
- css: '.active.content',
- value: 'New Ticket',
- timeout: 2,
- )
- ticket1 = ticket_create(
- data: {
- customer: 'nico',
- group: 'Users',
- title: 'Test Ticket for Shortcuts - ABC123',
- body: 'Test Ticket Body for Shortcuts - ABC123',
- },
- )
- sleep 5
- # close again
- shortcut(key: 'w')
- watch_for_disappear(
- css: '.active.content',
- value: ticket1[:number],
- timeout: 2,
- )
- # search it
- shortcut(key: 's')
- window_keys(value: ticket1[:number])
- exists(css: '#navigation .search.open')
- sleep 2
- window_keys(value: :arrow_down)
- window_keys(value: :arrow_down)
- window_keys(value: :enter)
- watch_for(
- css: '.active.content',
- value: ticket1[:number],
- timeout: 2,
- )
- exists_not(css: '#navigation .search.open')
- # open ticket
- shortcut(key: 's')
- window_keys(value: ticket1[:number])
- sleep 2
- window_keys(value: :arrow_down)
- window_keys(value: :arrow_down)
- window_keys(value: :enter)
- # open new ticket
- shortcut(key: 'n')
- watch_for(
- css: '.active.content',
- value: 'New Ticket',
- timeout: 2,
- )
- tab_count = @browser.find_elements(css: '#navigation .tasks .task').count
- assert_equal(2, tab_count)
- # tab is tab
- shortcut(key: :tab)
- watch_for(
- css: '.active.content',
- value: ticket1[:number],
- timeout: 2,
- )
- shortcut(key: 'm')
- shortcut(key: 'j')
- window_keys(value: 'some note')
- sleep 1
- shortcut(key: :enter)
- watch_for(
- css: '.active.content .ticket-article',
- value: 'some note',
- timeout: 6,
- )
- exists(css: '.active.content .ticket-article .internal-border')
- shortcut(key: 'g')
- window_keys(value: 'some reply')
- sleep 1
- shortcut(key: :enter)
- watch_for(
- css: '.active.content .ticket-article',
- value: 'some reply',
- timeout: 6,
- )
- shortcut(key: 'c')
- watch_for(
- css: '.active.content .sidebar-content .edit',
- value: 'closed',
- timeout: 6,
- )
- # open online notification
- @browser_agent = browser_instance
- login(
- browser: @browser_agent,
- username: 'agent1@example.com',
- password: 'test',
- url: browser_url,
- )
- ticket2 = ticket_create(
- browser: @browser_agent,
- data: {
- customer: 'nico',
- group: 'Users',
- title: 'Test Ticket for Shortcuts II - ABC123',
- body: 'Test Ticket Body for Shortcuts II - ABC123',
- },
- )
- sleep 5
- shortcut(key: 'a')
- watch_for(
- css: '.js-notificationsContainer',
- value: 'Test Ticket for Shortcuts II',
- timeout: 10,
- )
- window_keys(value: :arrow_down)
- window_keys(value: :enter)
- watch_for(
- css: '.active.content',
- value: ticket2[:number],
- timeout: 3,
- )
- shortcut(key: 'e')
- watch_for(
- css: 'body',
- value: 'login',
- timeout: 4,
- )
- end
- end
|