trabajo-afectivo/test/browser/first_steps_test.rb

130 lines
2.7 KiB
Ruby
Raw Normal View History

2016-03-01 14:12:27 +00:00
# encoding: utf-8
require 'browser_test_helper'
class FirstStepsTest < TestCase
def test_basic
agent = "bob.smith_#{rand(99_999_999)}"
customer = "customer.smith_#{rand(99_999_999)}"
@browser = browser_instance
login(
username: 'master@example.com',
password: 'test',
url: browser_url,
)
tasks_close_all()
click(css: '.active.content .tab[data-area="first-steps-widgets"]')
2016-03-01 14:12:27 +00:00
watch_for(
css: '.active.content',
value: 'Configuration',
)
# invite agent (with more then one group)
click(css: '.active.content .js-inviteAgent')
2016-03-01 14:12:27 +00:00
sleep 4
set(
css: '.modal [name="firstname"]',
value: 'Bob',
)
set(
css: '.modal [name="lastname"]',
value: 'Smith',
)
set(
css: '.modal [name="email"]',
value: "#{agent}@example.com",
)
check(css: '.modal [name="group_ids"]')
2016-03-01 14:12:27 +00:00
click(
css: '.modal button.btn.btn--primary',
2016-03-02 16:26:19 +00:00
fast: true,
2016-03-01 14:12:27 +00:00
)
watch_for(
css: 'body div.modal',
value: 'Sending',
)
watch_for_disappear(
css: 'body div.modal',
value: 'Sending',
)
# invite customer
click(css: '.active.content .js-inviteCustomer')
2016-03-01 14:12:27 +00:00
sleep 4
set(
css: '.modal [name="firstname"]',
value: 'Client',
)
set(
css: '.modal [name="lastname"]',
value: 'Smith',
)
set(
css: '.modal [name="email"]',
value: "#{customer}@example.com",
)
set(
css: '.modal [data-name="note"]',
value: 'some note',
)
click(
css: '.modal button.btn.btn--primary',
2016-03-02 16:26:19 +00:00
fast: true,
2016-03-01 14:12:27 +00:00
)
watch_for(
css: 'body div.modal',
value: 'Sending',
)
watch_for_disappear(
css: 'body div.modal',
value: 'Sending',
)
# test ticket
click(
css: '.active.content .js-testTicket',
2016-03-02 16:26:19 +00:00
fast: true,
2016-03-01 14:12:27 +00:00
)
watch_for(
css: 'body div.modal',
value: 'A Test Ticket has been created',
)
click(
css: '.modal .modal-body',
2016-03-02 16:26:19 +00:00
fast: true,
2016-03-01 14:12:27 +00:00
)
watch_for_disappear(
css: 'body div.modal',
value: 'Test Ticket',
)
execute(
js: '$(".active.content .sidebar").show()',
)
watch_for(
css: '.active.content .js-activityContent',
value: 'Nicole Braun created Article for Test Ticket!',
timeout: 35,
)
# check update
click(css: '.active.content a[href="#channels/form"]')
2016-03-01 14:12:27 +00:00
sleep 2
switch(
css: '#content .js-formSetting',
type: 'on',
)
click(css: '#navigation a[href="#dashboard"]')
2016-03-01 14:12:27 +00:00
hit = false
2016-06-30 20:04:48 +00:00
37.times {
2016-03-01 14:12:27 +00:00
next if !@browser.find_elements(css: '.active.content a[href="#channels/form"].todo.is-done')[0]
hit = true
break
}
assert(hit)
end
end