2012-12-14 10:14:48 +00:00
|
|
|
ENV["RAILS_ENV"] = "test"
|
|
|
|
require File.expand_path('../../config/environment', __FILE__)
|
2013-02-23 22:54:48 +00:00
|
|
|
require 'selenium-webdriver'
|
2012-12-14 10:14:48 +00:00
|
|
|
|
2013-02-23 22:54:48 +00:00
|
|
|
class TestCase < Test::Unit::TestCase
|
2013-06-25 14:00:28 +00:00
|
|
|
def browser
|
|
|
|
ENV['BROWSER'] || 'firefox'
|
|
|
|
end
|
|
|
|
|
|
|
|
def browser_support_cookies
|
|
|
|
if browser =~ /(internet_explorer|ie)/i
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2013-02-23 22:54:48 +00:00
|
|
|
def browser_url
|
|
|
|
ENV['BROWSER_URL'] || 'http://localhost:3000'
|
|
|
|
end
|
|
|
|
|
|
|
|
def browser_instance
|
|
|
|
if !@browsers
|
|
|
|
@browsers = []
|
|
|
|
end
|
2013-08-11 07:56:58 +00:00
|
|
|
if !ENV['REMOTE_URL'] || ENV['REMOTE_URL'].empty?
|
2013-06-25 14:00:28 +00:00
|
|
|
local_browser = Selenium::WebDriver.for( browser.to_sym )
|
2013-07-24 18:09:20 +00:00
|
|
|
browser_instance_preferences(local_browser)
|
2013-06-25 14:00:28 +00:00
|
|
|
@browsers.push local_browser
|
|
|
|
return local_browser
|
2013-02-23 22:54:48 +00:00
|
|
|
end
|
|
|
|
|
2013-08-11 07:56:58 +00:00
|
|
|
caps = Selenium::WebDriver::Remote::Capabilities.send( browser )
|
2013-02-23 22:54:48 +00:00
|
|
|
caps.platform = ENV['BROWSER_OS'] || 'Windows 2008'
|
|
|
|
caps.version = ENV['BROWSER_VERSION'] || '8'
|
2013-06-25 14:00:28 +00:00
|
|
|
local_browser = Selenium::WebDriver.for(
|
2013-02-23 22:54:48 +00:00
|
|
|
:remote,
|
|
|
|
:url => ENV['REMOTE_URL'],
|
|
|
|
:desired_capabilities => caps,
|
|
|
|
)
|
2013-07-24 18:09:20 +00:00
|
|
|
browser_instance_preferences(local_browser)
|
2013-06-25 14:00:28 +00:00
|
|
|
@browsers.push local_browser
|
|
|
|
return local_browser
|
2013-02-23 22:54:48 +00:00
|
|
|
end
|
2013-07-24 18:09:20 +00:00
|
|
|
def browser_instance_preferences(local_browser)
|
2013-11-14 21:30:44 +00:00
|
|
|
#local_browser.manage.window.resize_to(1024, 1024)
|
2013-07-24 18:09:20 +00:00
|
|
|
if ENV['REMOTE_URL'] !~ /saucelabs/i
|
|
|
|
if @browsers.size < 1
|
|
|
|
local_browser.manage.window.move_to(0, 0)
|
|
|
|
else
|
|
|
|
local_browser.manage.window.move_to(1024, 0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local_browser.manage.timeouts.implicit_wait = 3 # seconds
|
|
|
|
end
|
2013-02-23 22:54:48 +00:00
|
|
|
|
|
|
|
def teardown
|
|
|
|
return if !@browsers
|
2013-08-11 07:56:58 +00:00
|
|
|
|
|
|
|
# only shut down browser type once on local webdriver tests
|
|
|
|
# otherwise this error will happen "Errno::ECONNREFUSED: Connection refused - connect(2)"
|
|
|
|
if !ENV['REMOTE_URL']
|
|
|
|
shutdown = {}
|
|
|
|
@browsers.each{ |local_browser|
|
|
|
|
next if shutdown[ local_browser.browser ]
|
|
|
|
shutdown[ local_browser.browser ] = true
|
|
|
|
local_browser.quit
|
|
|
|
}
|
|
|
|
else
|
|
|
|
@browsers.each{ |local_browser|
|
|
|
|
local_browser.quit
|
|
|
|
}
|
|
|
|
end
|
2013-02-23 22:54:48 +00:00
|
|
|
end
|
2012-12-14 10:14:48 +00:00
|
|
|
|
|
|
|
# Add more helper methods to be used by all tests here...
|
2012-12-14 12:16:04 +00:00
|
|
|
def browser_login(data)
|
2013-02-12 00:56:23 +00:00
|
|
|
all_tests = [
|
2012-12-14 10:14:48 +00:00
|
|
|
{
|
|
|
|
:name => 'login',
|
2013-02-23 22:54:48 +00:00
|
|
|
:instance => data[:instance] || browser_instance,
|
|
|
|
:url => data[:url] || browser_url,
|
2012-12-14 10:14:48 +00:00
|
|
|
:action => [
|
|
|
|
{
|
2013-07-25 09:11:20 +00:00
|
|
|
:execute => 'login',
|
|
|
|
:username => data[:username] || 'nicole.braun@zammad.org',
|
|
|
|
:password => data[:password] || 'test'
|
2012-12-14 10:14:48 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|
2012-12-14 12:16:04 +00:00
|
|
|
return all_tests
|
|
|
|
end
|
|
|
|
|
2013-02-22 10:36:00 +00:00
|
|
|
def browser_signle_test_with_login(tests, login = {})
|
|
|
|
all_tests = browser_login( login )
|
2012-12-14 10:14:48 +00:00
|
|
|
all_tests = all_tests.concat( tests )
|
|
|
|
browser_single_test(all_tests)
|
|
|
|
end
|
|
|
|
|
2012-12-14 12:16:04 +00:00
|
|
|
def browser_double_test(tests)
|
|
|
|
instance1 = browser_single_test( browser_login({
|
|
|
|
:instance => tests[0][:instance1],
|
|
|
|
:username => tests[0][:instance1_username],
|
|
|
|
:password => tests[0][:instance1_password],
|
|
|
|
:url => tests[0][:url],
|
|
|
|
}), true )
|
|
|
|
instance2 = browser_single_test( browser_login({
|
|
|
|
:instance => tests[0][:instance2],
|
|
|
|
:username => tests[0][:instance2_username],
|
|
|
|
:password => tests[0][:instance2_password],
|
|
|
|
:url => tests[0][:url],
|
|
|
|
}), true )
|
|
|
|
tests.each { |test|
|
|
|
|
if test[:action]
|
|
|
|
test[:action].each { |action|
|
|
|
|
if action[:execute] == 'wait'
|
|
|
|
sleep action[:value]
|
|
|
|
next
|
|
|
|
end
|
|
|
|
next if !action[:where]
|
|
|
|
if action[:where] == :instance1
|
|
|
|
instance = instance1
|
|
|
|
else
|
|
|
|
instance = instance2
|
|
|
|
end
|
|
|
|
|
|
|
|
browser_element_action(test, action, instance)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
}
|
|
|
|
instance1.close
|
|
|
|
instance2.close
|
|
|
|
end
|
|
|
|
|
|
|
|
def browser_single_test(tests, keep_connection = false)
|
2012-12-14 10:14:48 +00:00
|
|
|
instance = nil
|
2013-04-23 18:36:09 +00:00
|
|
|
@stack = nil
|
2012-12-14 10:14:48 +00:00
|
|
|
tests.each { |test|
|
|
|
|
if test[:instance]
|
|
|
|
instance = test[:instance]
|
|
|
|
end
|
|
|
|
if test[:url]
|
2013-02-23 22:54:48 +00:00
|
|
|
instance.get( test[:url] )
|
2012-12-14 10:14:48 +00:00
|
|
|
end
|
|
|
|
if test[:action]
|
|
|
|
test[:action].each { |action|
|
|
|
|
if action[:execute] == 'wait'
|
|
|
|
sleep action[:value]
|
|
|
|
next
|
|
|
|
end
|
2012-12-14 12:16:04 +00:00
|
|
|
browser_element_action(test, action, instance)
|
2012-12-14 10:14:48 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
}
|
2012-12-14 12:16:04 +00:00
|
|
|
if keep_connection
|
|
|
|
return instance
|
|
|
|
end
|
2012-12-14 10:14:48 +00:00
|
|
|
instance.close
|
|
|
|
end
|
2013-06-08 22:35:18 +00:00
|
|
|
|
2012-12-14 12:16:04 +00:00
|
|
|
def browser_element_action(test, action, instance)
|
2013-08-20 20:37:39 +00:00
|
|
|
puts "NOTICE #{Time.now.to_s}: " + action.inspect
|
2013-08-27 21:05:33 +00:00
|
|
|
if action[:execute] !~ /accept|dismiss/i
|
2014-10-14 00:13:19 +00:00
|
|
|
#cookies = instance.manage.all_cookies
|
|
|
|
#cookies.each {|cookie|
|
|
|
|
# puts " COOKIE " + cookie.to_s
|
|
|
|
#}
|
2013-08-27 21:05:33 +00:00
|
|
|
end
|
|
|
|
|
2013-07-25 09:11:20 +00:00
|
|
|
sleep 0.1
|
2013-02-22 10:36:00 +00:00
|
|
|
if action[:css]
|
2013-06-18 20:58:29 +00:00
|
|
|
if action[:css].match '###stack###'
|
|
|
|
action[:css].gsub! '###stack###', @stack
|
|
|
|
end
|
2013-02-23 22:54:48 +00:00
|
|
|
begin
|
2013-06-08 22:35:18 +00:00
|
|
|
if action[:range] == 'all'
|
|
|
|
element = instance.find_elements( { :css => action[:css] } )
|
|
|
|
else
|
|
|
|
element = instance.find_element( { :css => action[:css] } )
|
|
|
|
end
|
2013-02-23 22:54:48 +00:00
|
|
|
rescue
|
|
|
|
element = nil
|
|
|
|
end
|
2012-12-14 12:16:04 +00:00
|
|
|
if action[:result] == false
|
2013-02-23 22:54:48 +00:00
|
|
|
assert( !element, "(#{test[:name]}) Element with css '#{action[:css]}' exists" )
|
2012-12-14 12:16:04 +00:00
|
|
|
else
|
2013-02-23 22:54:48 +00:00
|
|
|
assert( element, "(#{test[:name]}) Element with css '#{action[:css]}' doesn't exist" )
|
2012-12-14 12:16:04 +00:00
|
|
|
end
|
|
|
|
elsif action[:element] == :url
|
2013-02-23 22:54:48 +00:00
|
|
|
if instance.current_url =~ /#{Regexp.quote(action[:result])}/
|
|
|
|
assert( true, "(#{test[:name]}) url #{instance.current_url} is matching #{action[:result]}" )
|
2012-12-14 12:16:04 +00:00
|
|
|
else
|
2013-02-23 22:54:48 +00:00
|
|
|
assert( false, "(#{test[:name]}) url #{instance.current_url} is not matching #{action[:result]}" )
|
2012-12-14 12:16:04 +00:00
|
|
|
end
|
2013-06-18 21:36:07 +00:00
|
|
|
elsif action[:element] == :title
|
|
|
|
title = instance.title
|
|
|
|
if title =~ /#{action[:value]}/i
|
2013-06-24 08:09:59 +00:00
|
|
|
assert( true, "(#{test[:name]}) matching '#{action[:value]}' in title '#{title}'" )
|
2013-06-18 21:36:07 +00:00
|
|
|
else
|
2013-06-24 08:09:59 +00:00
|
|
|
assert( false, "(#{test[:name]}) not matching '#{action[:value]}' in title '#{title}'" )
|
2013-06-18 21:36:07 +00:00
|
|
|
end
|
|
|
|
return
|
2013-06-23 21:32:45 +00:00
|
|
|
elsif action[:element] == :cookie
|
2013-06-25 14:00:28 +00:00
|
|
|
if !browser_support_cookies
|
|
|
|
assert( true, "(#{test[:name]}) '#{action[:value]}' ups browser is not supporting reading cookies")
|
2013-07-14 11:43:37 +00:00
|
|
|
return
|
2013-06-25 14:00:28 +00:00
|
|
|
end
|
2013-06-23 21:32:45 +00:00
|
|
|
cookies = instance.manage.all_cookies
|
|
|
|
cookies.each {|cookie|
|
|
|
|
if cookie.to_s =~ /#{action[:value]}/i
|
2013-06-24 08:09:59 +00:00
|
|
|
assert( true, "(#{test[:name]}) matching '#{action[:value]}' in cookie '#{cookie.to_s}'" )
|
2013-06-23 21:32:45 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
}
|
2013-06-25 12:24:39 +00:00
|
|
|
assert( false, "(#{test[:name]}) not matching '#{action[:value]}' in cookie '#{cookies.to_s}'" )
|
2013-06-23 21:32:45 +00:00
|
|
|
return
|
2013-03-22 08:29:44 +00:00
|
|
|
elsif action[:element] == :alert
|
|
|
|
element = instance.switch_to.alert
|
2013-07-25 09:11:20 +00:00
|
|
|
elsif action[:execute] == 'login'
|
2013-08-11 12:06:44 +00:00
|
|
|
element = instance.find_element( { :css => '#login input[name="username"]' } )
|
|
|
|
if !element
|
2013-07-25 09:11:20 +00:00
|
|
|
assert( false, "(#{test[:name]}) no login box found!" )
|
|
|
|
return
|
|
|
|
end
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:username] )
|
|
|
|
element = instance.find_element( { :css => '#login input[name="password"]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:password] )
|
2014-12-02 07:22:26 +00:00
|
|
|
if action[:remember_me]
|
|
|
|
instance.find_element( { :css => '#login [name="remember_me"]' } ).click
|
|
|
|
end
|
2013-07-25 09:11:20 +00:00
|
|
|
instance.find_element( { :css => '#login button' } ).click
|
|
|
|
sleep 4
|
2014-09-15 09:06:13 +00:00
|
|
|
login = instance.find_element( { :css => '.user-menu .user a' } ).attribute('title')
|
|
|
|
if login != action[:username]
|
|
|
|
assert( false, "(#{test[:name]}) login failed" )
|
|
|
|
return
|
|
|
|
end
|
|
|
|
assert( true, "(#{test[:name]}) login success" )
|
2013-07-25 09:11:20 +00:00
|
|
|
return
|
|
|
|
elsif action[:execute] == 'logout'
|
|
|
|
instance.find_element( { :css => 'a[href="#current_user"]' } ).click
|
|
|
|
sleep 0.1
|
|
|
|
instance.find_element( { :css => 'a[href="#logout"]' } ).click
|
2013-08-27 21:05:33 +00:00
|
|
|
(1..6).each {|loop|
|
|
|
|
login = instance.find_element( { :css => '#login' } )
|
|
|
|
if login
|
|
|
|
assert( true, "(#{test[:name]}) logout" )
|
|
|
|
return
|
|
|
|
end
|
|
|
|
}
|
|
|
|
assert( false, "(#{test[:name]}) no login box found!" )
|
|
|
|
return
|
|
|
|
elsif action[:execute] == 'watch_for'
|
2014-11-18 14:51:44 +00:00
|
|
|
timeout = 16
|
|
|
|
if action[:timeout]
|
|
|
|
timeout = action[:timeout]
|
|
|
|
end
|
2014-11-18 21:09:01 +00:00
|
|
|
loops = (timeout / 0.5).to_i
|
2013-08-28 06:39:24 +00:00
|
|
|
text = ''
|
2014-11-18 14:51:44 +00:00
|
|
|
(1..loops).each { |loop|
|
2014-12-02 13:07:35 +00:00
|
|
|
begin
|
|
|
|
element = instance.find_element( { :css => action[:area] } )
|
|
|
|
if element && element.displayed?
|
|
|
|
text = element.text
|
|
|
|
if text =~ /#{action[:value]}/i
|
|
|
|
assert( true, "(#{test[:name]}) '#{action[:value]}' found in '#{text}'" )
|
|
|
|
sleep 0.4
|
|
|
|
return
|
|
|
|
end
|
2014-11-16 23:46:39 +00:00
|
|
|
end
|
2014-12-02 13:07:35 +00:00
|
|
|
rescue => e
|
|
|
|
puts e.message
|
2013-08-27 21:05:33 +00:00
|
|
|
end
|
2014-11-18 21:09:01 +00:00
|
|
|
sleep 0.5
|
2014-08-15 08:59:40 +00:00
|
|
|
}
|
2013-08-27 21:05:33 +00:00
|
|
|
assert( false, "(#{test[:name]}) '#{action[:value]}' found in '#{text}'" )
|
2013-07-25 09:11:20 +00:00
|
|
|
return
|
2014-12-03 10:01:04 +00:00
|
|
|
elsif action[:execute] == 'watch_for_disappear'
|
|
|
|
timeout = 16
|
|
|
|
if action[:timeout]
|
|
|
|
timeout = action[:timeout]
|
|
|
|
end
|
|
|
|
loops = (timeout / 0.5).to_i
|
|
|
|
text = ''
|
|
|
|
(1..loops).each { |loop|
|
|
|
|
begin
|
|
|
|
element = instance.find_element( { :css => action[:area] } )
|
|
|
|
if !element || !element.displayed?
|
|
|
|
assert( true, "(#{test[:name]}) not found" )
|
|
|
|
sleep 0.4
|
|
|
|
return
|
|
|
|
end
|
|
|
|
rescue => e
|
|
|
|
puts e.message
|
|
|
|
assert( true, "(#{test[:name]}) not found" )
|
|
|
|
sleep 0.4
|
|
|
|
return
|
|
|
|
end
|
|
|
|
sleep 0.5
|
|
|
|
}
|
|
|
|
assert( false, "(#{test[:name]} / #{test[:area]}) still exsists" )
|
|
|
|
return
|
2014-08-15 08:59:40 +00:00
|
|
|
elsif action[:execute] == 'create_user'
|
|
|
|
|
|
|
|
instance.find_element( { :css => 'a[href="#manage"]' } ).click
|
|
|
|
instance.find_element( { :css => 'a[href="#manage/users"]' } ).click
|
|
|
|
sleep 2
|
|
|
|
instance.find_element( { :css => 'a[data-type="new"]' } ).click
|
|
|
|
sleep 2
|
2014-10-11 23:35:53 +00:00
|
|
|
#element = instance.find_element( { :css => '.modal input[name=login]' } )
|
|
|
|
#element.clear
|
|
|
|
#element.send_keys( action[:login] )
|
2014-08-15 08:59:40 +00:00
|
|
|
element = instance.find_element( { :css => '.modal input[name=firstname]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:firstname] )
|
|
|
|
element = instance.find_element( { :css => '.modal input[name=lastname]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:lastname] )
|
|
|
|
element = instance.find_element( { :css => '.modal input[name=email]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:email] )
|
|
|
|
element = instance.find_element( { :css => '.modal input[name=password]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:password] )
|
|
|
|
element = instance.find_element( { :css => '.modal input[name=password_confirm]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:password] )
|
|
|
|
instance.find_element( { :css => '.modal input[name="role_ids"][value="3"]' } ).click
|
2014-09-16 18:57:55 +00:00
|
|
|
instance.find_element( { :css => '.modal button.js-submit' } ).click
|
2014-08-15 08:59:40 +00:00
|
|
|
(1..14).each {|loop|
|
|
|
|
element = instance.find_element( { :css => 'body' } )
|
|
|
|
text = element.text
|
|
|
|
if text =~ /#{Regexp.quote(action[:lastname])}/
|
|
|
|
assert( true, "(#{test[:name]}) user created" )
|
|
|
|
return
|
|
|
|
end
|
|
|
|
sleep 0.5
|
|
|
|
}
|
|
|
|
assert( true, "(#{test[:name]}) user creation failed" )
|
|
|
|
return
|
2014-10-11 23:35:53 +00:00
|
|
|
|
|
|
|
elsif action[:execute] == 'verify_task_attributes'
|
|
|
|
if action[:title]
|
|
|
|
element = instance.find_element( { :css => '.tasks .active' } )
|
|
|
|
assert_equal( action[:title], element.text.strip )
|
|
|
|
end
|
|
|
|
return
|
|
|
|
elsif action[:execute] == 'verify_ticket_attributes'
|
|
|
|
if action[:title]
|
|
|
|
element = instance.find_element( { :css => '.content.active .page-header .ticket-title-update' } )
|
|
|
|
assert_equal( action[:title], element.text.strip )
|
|
|
|
end
|
|
|
|
if action[:body]
|
|
|
|
element = instance.find_element( { :css => '.content.active [data-name="body"]' } )
|
|
|
|
assert_equal( action[:body], element.text.strip )
|
|
|
|
end
|
|
|
|
return
|
|
|
|
elsif action[:execute] == 'set_ticket_attributes'
|
|
|
|
if action[:title]
|
|
|
|
element = instance.find_element( { :css => '.content.active .page-header .ticket-title-update' } )
|
|
|
|
instance.execute_script( '$(".content.active .page-header .ticket-title-update").focus()' )
|
|
|
|
instance.execute_script( '$(".content.active .page-header .ticket-title-update").text("' + action[:title] + '")' )
|
|
|
|
instance.execute_script( '$(".content.active .page-header .ticket-title-update").blur()' )
|
|
|
|
instance.execute_script( '$(".content.active .page-header .ticket-title-update").trigger("blur")' )
|
|
|
|
# {
|
|
|
|
# :where => :instance2,
|
|
|
|
# :execute => 'sendkey',
|
|
|
|
# :css => '.content.active .page-header .ticket-title-update',
|
|
|
|
# :value => 'TTT',
|
|
|
|
# },
|
|
|
|
# {
|
|
|
|
# :where => :instance2,
|
|
|
|
# :execute => 'sendkey',
|
|
|
|
# :css => '.content.active .page-header .ticket-title-update',
|
|
|
|
# :value => :tab,
|
|
|
|
# },
|
|
|
|
end
|
|
|
|
if action[:body]
|
|
|
|
element = instance.find_element( { :css => '.content.active [data-name="body"]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:body] )
|
|
|
|
# check if body is filled / in case use workaround
|
|
|
|
body = element.text
|
2014-10-14 00:13:19 +00:00
|
|
|
#puts "body '#{body}'"
|
2014-10-11 23:35:53 +00:00
|
|
|
if !body || body.empty? || body == '' || body == ' '
|
|
|
|
result = instance.execute_script( '$(".content.active [data-name=body]").text("' + action[:body] + '")' )
|
2014-10-14 00:13:19 +00:00
|
|
|
#puts "r #{result.inspect}"
|
2014-10-11 23:35:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
return
|
2013-07-25 09:11:20 +00:00
|
|
|
elsif action[:execute] == 'create_ticket'
|
|
|
|
instance.find_element( { :css => 'a[href="#new"]' } ).click
|
2014-09-15 09:06:13 +00:00
|
|
|
instance.find_element( { :css => 'a[href="#ticket/create"]' } ).click
|
2014-10-11 23:35:53 +00:00
|
|
|
element = instance.find_element( { :css => '.active .newTicket' } )
|
2013-07-25 09:11:20 +00:00
|
|
|
if !element
|
|
|
|
assert( false, "(#{test[:name]}) no ticket create screen found!" )
|
|
|
|
return
|
|
|
|
end
|
2013-08-27 21:05:33 +00:00
|
|
|
sleep 2
|
2014-10-14 00:13:19 +00:00
|
|
|
if action[:customer] == nil
|
|
|
|
element = instance.find_element( { :css => '.active .newTicket input[name="customer_id_completion"]' } )
|
|
|
|
element.click
|
|
|
|
element.clear
|
2014-12-02 21:34:46 +00:00
|
|
|
|
|
|
|
# in certan cases focus is not set, do it this way
|
|
|
|
instance.execute_script( '$(".content.active .newTicket input[name=customer_id_completion]").focus()' )
|
2014-10-14 00:13:19 +00:00
|
|
|
element.send_keys( 'nico*' )
|
|
|
|
sleep 4
|
|
|
|
element.send_keys( :arrow_down )
|
2014-12-02 13:07:35 +00:00
|
|
|
sleep 0.1
|
2014-12-02 21:34:46 +00:00
|
|
|
instance.find_element( { :css => '.active .newTicket .recipientList-entry.js-user.is-active' } ).click
|
2014-10-14 00:13:19 +00:00
|
|
|
sleep 0.3
|
|
|
|
end
|
|
|
|
if action[:group]
|
|
|
|
element = instance.find_element( { :css => '.active .newTicket select[name="group_id"]' } )
|
|
|
|
dropdown = Selenium::WebDriver::Support::Select.new(element)
|
|
|
|
dropdown.select_by( :text, action[:group])
|
|
|
|
sleep 0.2
|
|
|
|
end
|
|
|
|
if action[:subject]
|
|
|
|
element = instance.find_element( { :css => '.active .newTicket input[name="title"]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:subject] )
|
|
|
|
sleep 0.2
|
|
|
|
end
|
|
|
|
if action[:body]
|
|
|
|
element = instance.find_element( { :css => '.active .newTicket [data-name="body"]' } )
|
|
|
|
element.clear
|
|
|
|
element.send_keys( action[:body] )
|
2014-12-02 21:34:46 +00:00
|
|
|
|
2014-10-14 00:13:19 +00:00
|
|
|
# check if body is filled / in case use workaround
|
|
|
|
body = element.text
|
|
|
|
#puts "body '#{body}'"
|
|
|
|
if !body || body.empty? || body == '' || body == ' '
|
2014-12-02 21:34:46 +00:00
|
|
|
result = instance.execute_script( '$(".content.active .newTicket [data-name=body]").text("' + action[:body] + '").focus()' )
|
2014-10-14 00:13:19 +00:00
|
|
|
#puts "r #{result.inspect}"
|
|
|
|
end
|
2014-10-11 23:35:53 +00:00
|
|
|
end
|
2013-07-25 09:11:20 +00:00
|
|
|
if action[:do_not_submit]
|
|
|
|
assert( true, "(#{test[:name]}) ticket created without submit" )
|
|
|
|
return
|
|
|
|
end
|
2014-09-09 23:42:20 +00:00
|
|
|
sleep 0.8
|
2014-12-02 21:34:46 +00:00
|
|
|
#instance.execute_script( '$(".content.active .newTicket form").submit()' )
|
|
|
|
instance.find_element( { :css => '.content.active .newTicket button.submit' } ).click
|
2014-09-09 23:42:20 +00:00
|
|
|
sleep 1
|
2014-12-02 21:34:46 +00:00
|
|
|
(1..16).each {|loop|
|
2013-08-27 21:05:33 +00:00
|
|
|
if instance.current_url =~ /#{Regexp.quote('#ticket/zoom/')}/
|
|
|
|
assert( true, "(#{test[:name]}) ticket created" )
|
2014-12-02 12:23:22 +00:00
|
|
|
sleep 1
|
2013-08-27 21:05:33 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
sleep 0.5
|
|
|
|
}
|
2014-09-09 23:42:20 +00:00
|
|
|
assert( false, "(#{test[:name]}) ticket creation failed, can't get zoom url" )
|
2013-07-25 09:11:20 +00:00
|
|
|
return
|
2013-06-08 22:35:18 +00:00
|
|
|
elsif action[:execute] == 'close_all_tasks'
|
2013-07-25 09:11:20 +00:00
|
|
|
for i in 1..100
|
2013-06-08 22:35:18 +00:00
|
|
|
begin
|
2014-09-15 09:06:13 +00:00
|
|
|
sleep 0.8
|
|
|
|
hover_element = instance.find_element( { :css => '.navigation .tasks .task:first-child' } )
|
|
|
|
if hover_element
|
|
|
|
instance.mouse.move_to(hover_element)
|
2014-09-16 18:57:55 +00:00
|
|
|
sleep 0.1
|
|
|
|
click_element = instance.find_element( { :css => '.navigation .tasks .task:first-child .js-close' } )
|
2014-09-15 09:06:13 +00:00
|
|
|
if click_element
|
|
|
|
click_element.click
|
|
|
|
sleep 0.2
|
|
|
|
end
|
2013-06-08 22:35:18 +00:00
|
|
|
else
|
|
|
|
break
|
|
|
|
end
|
2014-09-15 09:06:13 +00:00
|
|
|
rescue => e
|
|
|
|
puts e.message
|
2013-06-08 22:35:18 +00:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2013-07-25 09:11:20 +00:00
|
|
|
assert( true, "(#{test[:name]}) all tasks closed" )
|
|
|
|
return
|
2013-06-17 05:38:17 +00:00
|
|
|
elsif action[:execute] == 'navigate'
|
|
|
|
instance.navigate.to( action[:to] )
|
2013-07-25 09:11:20 +00:00
|
|
|
return
|
2013-06-18 20:58:29 +00:00
|
|
|
elsif action[:execute] == 'reload'
|
|
|
|
instance.navigate.refresh
|
2013-07-25 09:11:20 +00:00
|
|
|
return
|
2013-06-23 21:32:45 +00:00
|
|
|
elsif action[:execute] == 'js'
|
|
|
|
result = instance.execute_script( action[:value] )
|
2014-10-14 00:13:19 +00:00
|
|
|
elsif action[:execute] == 'sendkey'
|
|
|
|
if action[:value].class == Array
|
|
|
|
action[:value].each {|key|
|
|
|
|
instance.action.send_keys(key).perform
|
|
|
|
}
|
|
|
|
else
|
|
|
|
instance.action.send_keys(action[:value]).perform
|
|
|
|
#instance.action.send_keys(:enter).perform
|
|
|
|
end
|
|
|
|
# element.send_keys( action[:value] )
|
2013-06-18 20:58:29 +00:00
|
|
|
elsif action[:link]
|
|
|
|
if action[:link].match '###stack###'
|
|
|
|
action[:link].gsub! '###stack###', @stack
|
|
|
|
end
|
|
|
|
element = instance.find_element( { :partial_link_text => action[:link] } )
|
2012-12-14 12:16:04 +00:00
|
|
|
else
|
|
|
|
assert( false, "(#{test[:name]}) unknow selector for '#{action[:element]}'" )
|
|
|
|
end
|
2013-07-17 09:02:07 +00:00
|
|
|
if action[:execute] == 'setCheck'
|
|
|
|
checked = element.attribute('checked')
|
|
|
|
if !checked
|
|
|
|
element.click
|
|
|
|
end
|
|
|
|
elsif action[:execute] == 'setUncheck'
|
|
|
|
checked = element.attribute('checked')
|
|
|
|
if checked
|
|
|
|
element.click
|
|
|
|
end
|
|
|
|
elsif action[:execute] == 'set'
|
2013-03-22 08:29:44 +00:00
|
|
|
element.clear
|
2013-04-23 18:36:09 +00:00
|
|
|
if action[:value] == '###stack###'
|
|
|
|
element.send_keys( @stack )
|
|
|
|
else
|
2014-10-14 00:13:19 +00:00
|
|
|
element.send_keys( '' )
|
|
|
|
keys = action[:value].to_s.split('')
|
|
|
|
keys.each {|key|
|
|
|
|
instance.action.send_keys(key).perform
|
2014-12-02 21:34:46 +00:00
|
|
|
sleep 0.01
|
2014-10-14 00:13:19 +00:00
|
|
|
}
|
|
|
|
#element.send_keys( action[:value] )
|
|
|
|
sleep 0.3
|
2013-04-23 18:36:09 +00:00
|
|
|
end
|
2013-02-21 21:09:36 +00:00
|
|
|
elsif action[:execute] == 'select'
|
2013-02-23 22:54:48 +00:00
|
|
|
dropdown = Selenium::WebDriver::Support::Select.new(element)
|
|
|
|
dropdown.select_by(:text, action[:value])
|
2012-12-14 12:16:04 +00:00
|
|
|
elsif action[:execute] == 'click'
|
2013-06-10 11:59:16 +00:00
|
|
|
if element.class == Array
|
|
|
|
element.each {|item|
|
|
|
|
item.click
|
|
|
|
}
|
|
|
|
else
|
|
|
|
element.click
|
2013-06-08 22:35:18 +00:00
|
|
|
end
|
2013-03-22 08:29:44 +00:00
|
|
|
elsif action[:execute] == 'accept'
|
|
|
|
element.accept
|
|
|
|
elsif action[:execute] == 'dismiss'
|
|
|
|
element.dismiss
|
2012-12-14 12:16:04 +00:00
|
|
|
elsif action[:execute] == 'send_key'
|
|
|
|
element.send_keys action[:value]
|
|
|
|
elsif action[:execute] == 'match'
|
2013-02-22 10:36:00 +00:00
|
|
|
if action[:css] =~ /select/
|
2013-02-23 22:54:48 +00:00
|
|
|
dropdown = Selenium::WebDriver::Support::Select.new(element)
|
|
|
|
success = false
|
|
|
|
if dropdown.selected_options
|
|
|
|
dropdown.selected_options.each {|option|
|
|
|
|
if option.text == action[:value]
|
|
|
|
success = true
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
2012-12-14 12:16:04 +00:00
|
|
|
if action[:match_result]
|
2013-02-22 10:36:00 +00:00
|
|
|
if success
|
|
|
|
assert( true, "(#{test[:name]}) matching '#{action[:value]}' in select list" )
|
|
|
|
else
|
|
|
|
assert( false, "(#{test[:name]}) not matching '#{action[:value]}' in select list" )
|
|
|
|
end
|
2012-12-14 12:16:04 +00:00
|
|
|
else
|
2013-02-22 10:36:00 +00:00
|
|
|
if success
|
|
|
|
assert( false, "(#{test[:name]}) not matching '#{action[:value]}' in select list" )
|
|
|
|
else
|
|
|
|
assert( true, "(#{test[:name]}) matching '#{action[:value]}' in select list" )
|
|
|
|
end
|
2012-12-14 12:16:04 +00:00
|
|
|
end
|
|
|
|
else
|
2014-09-15 09:06:13 +00:00
|
|
|
if action[:attribute]
|
|
|
|
text = element.attribute( action[:attribute] )
|
|
|
|
elsif action[:css] =~ /(input|textarea)/i
|
2013-02-23 22:54:48 +00:00
|
|
|
text = element.attribute('value')
|
2012-12-14 12:16:04 +00:00
|
|
|
else
|
2013-02-22 10:36:00 +00:00
|
|
|
text = element.text
|
|
|
|
end
|
2013-04-23 18:36:09 +00:00
|
|
|
if action[:value] == '###stack###'
|
|
|
|
action[:value] = @stack
|
|
|
|
end
|
|
|
|
match = false
|
|
|
|
if action[:no_quote]
|
2014-10-14 00:13:19 +00:00
|
|
|
#puts "aaaa #{text}/#{action[:value]}"
|
2013-04-23 18:36:09 +00:00
|
|
|
if text =~ /#{action[:value]}/
|
|
|
|
if $1
|
|
|
|
@stack = $1
|
|
|
|
end
|
|
|
|
match = $1 || true
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if text =~ /#{Regexp.quote(action[:value])}/
|
|
|
|
match = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if match
|
2013-02-22 10:36:00 +00:00
|
|
|
if action[:match_result]
|
|
|
|
assert( true, "(#{test[:name]}) matching '#{action[:value]}' in content '#{text}'" )
|
|
|
|
else
|
|
|
|
assert( false, "(#{test[:name]}) matching '#{action[:value]}' in content '#{text}' but should not!" )
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if !action[:match_result]
|
|
|
|
assert( true, "(#{test[:name]}) not matching '#{action[:value]}' in content '#{text}'" )
|
|
|
|
else
|
|
|
|
assert( false, "(#{test[:name]}) not matching '#{action[:value]}' in content '#{text}' but should not!" )
|
|
|
|
end
|
2012-12-14 12:16:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
elsif action[:execute] == 'check'
|
2013-06-23 21:32:45 +00:00
|
|
|
elsif action[:execute] == 'js'
|
2014-10-14 00:13:19 +00:00
|
|
|
elsif action[:execute] == 'sendkey'
|
2012-12-14 12:16:04 +00:00
|
|
|
else
|
|
|
|
assert( false, "(#{test[:name]}) unknow action '#{action[:execute]}'" )
|
|
|
|
end
|
|
|
|
end
|
2012-12-14 10:14:48 +00:00
|
|
|
end
|