123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- require 'browser_test_helper'
- class AgentUserManageTest < TestCase
- def test_agent_customer_ticket_create
- customer_user_email = "customer-test-#{rand(999_999)}@example.com"
- firstname = 'Customer Firstname'
- lastname = 'Customer Lastname'
- fullname = "#{firstname} #{lastname} <#{customer_user_email}>"
- @browser = browser_instance
- login(
- username: 'agent1@example.com',
- password: 'test',
- url: browser_url,
- )
- tasks_close_all()
- # create customer
- click(css: 'a[href="#new"]', only_if_exists: true)
- click(css: 'a[href="#ticket/create"]')
- watch_for(
- css: '.content.active .newTicket',
- timeout: 1,
- )
- click(css: '.content.active .newTicket [name="customer_id_completion"]')
- # check if pulldown is open, it's not working stable via selenium
- @browser.execute_script("$('.active .newTicket .js-recipientDropdown').addClass('open')")
- sleep 1
- sendkey(value: :arrow_down)
- sleep 0.5
- click(css: '.content.active .newTicket .recipientList-entry.js-objectNew')
- modal_ready()
- set(
- css: '.content.active .modal input[name="firstname"]',
- value: firstname,
- )
- set(
- css: '.content.active .modal input[name="lastname"]',
- value: lastname,
- )
- set(
- css: '.content.active .modal input[name="email"]',
- value: customer_user_email,
- )
- click(css: '.content.active .modal button.js-submit')
- modal_disappear()
- sleep 4
- # check is used to check selected
- match(
- css: '.content.active .newTicket input[name="customer_id"]',
- value: '^\d+$',
- no_quote: true,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: firstname,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: lastname,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: customer_user_email,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: fullname,
- )
- sleep 4
- # call new ticket screen again
- tasks_close_all()
- click(css: 'a[href="#new"]', only_if_exists: true)
- click(css: 'a[href="#ticket/create"]')
- watch_for(
- css: '.content.active .newTicket',
- timeout: 1,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id"]',
- value: '',
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: '',
- )
- set(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: customer_user_email,
- )
- sleep 3
- click(css: '.content.active .newTicket .recipientList-entry.js-object.is-active')
- sleep 1
- # check is used to check selected
- match(
- css: '.content.active .newTicket input[name="customer_id"]',
- value: '^\d+$',
- no_quote: true,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: firstname,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: lastname,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: customer_user_email,
- )
- match(
- css: '.content.active .newTicket input[name="customer_id_completion"]',
- value: fullname,
- )
- end
- def test_agent_customer_ticket_zoom
- customer_user_email = "customer-test-#{rand(999_999)}@example.com"
- firstname = 'Customer Firstname'
- lastname = 'Customer Lastname'
- fullname = "#{firstname} #{lastname} <#{customer_user_email}>"
- @browser = browser_instance
- login(
- username: 'agent1@example.com',
- password: 'test',
- url: browser_url,
- )
- tasks_close_all()
- ticket_create(
- data: {
- customer: 'nico',
- group: 'Users',
- title: 'some changes',
- body: 'some body',
- },
- )
- watch_for(
- css: '.content.active .ticketZoom-header .ticket-number',
- value: '\d',
- )
- click(css: '.content.active .tabsSidebar-tabs .tabsSidebar-tab[data-tab="customer"]')
- match(
- css: '.content.active .tabsSidebar .sidebar[data-tab="customer"]',
- value: 'Nicole Braun',
- )
- click(css: '.content.active .tabsSidebar .sidebar[data-tab="customer"] .js-actions')
- click(css: '.content.active .tabsSidebar .sidebar[data-tab="customer"] .js-actions li[data-type="customer-change"]')
- modal_ready()
- click(css: '.content.active .modal [name="customer_id_completion"]')
- # check if pulldown is open, it's not working stable via selenium
- @browser.execute_script("$('.active .modal .js-recipientDropdown').addClass('open')")
- sleep 1
- sendkey(value: :arrow_down)
- sleep 0.5
- click(css: '.content.active .modal .recipientList-entry.js-objectNew')
- watch_for(
- css: '.content.active .modal input[name="firstname"]',
- timeout: 1,
- )
- set(
- css: '.content.active .modal input[name="firstname"]',
- value: firstname,
- )
- set(
- css: '.content.active .modal input[name="lastname"]',
- value: lastname,
- )
- set(
- css: '.content.active .modal input[name="email"]',
- value: customer_user_email,
- )
- # there are 2 models, take the correct one
- #click(css: '.content.active .modal button.js-submit')
- @browser.execute_script("$('.content.active .modal input[name=\"firstname\"]').closest('form').find('button.js-submit').click()")
- # check is used to check selected
- watch_for(
- css: '.content.active .modal input[name="customer_id"]',
- value: '^\d+$',
- no_quote: true,
- )
- match(
- css: '.content.active .modal input[name="customer_id_completion"]',
- value: firstname,
- )
- match(
- css: '.content.active .modal input[name="customer_id_completion"]',
- value: lastname,
- )
- match(
- css: '.content.active .modal input[name="customer_id_completion"]',
- value: customer_user_email,
- )
- match(
- css: '.content.active .modal input[name="customer_id_completion"]',
- value: fullname,
- )
- click(css: '.content.active .modal button.js-submit')
- modal_disappear()
- watch_for(
- css: '.content.active .tabsSidebar .sidebar[data-tab="customer"]',
- value: customer_user_email,
- timeout: 4,
- )
- end
- end
|