testcentricity_web 0.9.6.3 → 0.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcb7185a4babab7ae5d471ae10e0544f31ab000a
|
4
|
+
data.tar.gz: 3c453c061dab134ad5a36872b2b94c3814286db2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 931e586bbfc70cd878a7fb194d8c1fdea0acccd57ee983ee250f9f2f36340630e28802a7c1760e7f915758a6db6d5f45a06feb1745c73190e3891a18f924929c
|
7
|
+
data.tar.gz: db9449f9e74e9794ce790c8ac1ab502acd50a8be721602fed93e672f7e14f0dce50ef81ca0cb377a47cacab955147386606f133d91418069ed7c3db9e166473e
|
@@ -298,7 +298,24 @@ module TestCentricity
|
|
298
298
|
actual = ui_object.get_table_cell(cell[0].to_i, cell[1].to_i)
|
299
299
|
end
|
300
300
|
end
|
301
|
-
|
301
|
+
|
302
|
+
if state.is_a?(Hash) && state.length == 1
|
303
|
+
error_msg = "Expected #{ui_object.get_locator} #{property.to_s} property to be"
|
304
|
+
state.each do |key, value|
|
305
|
+
case key
|
306
|
+
when :lt, :less_than
|
307
|
+
ExceptionQueue.enqueue_exception("#{error_msg} less than #{value} but found #{actual}") unless actual < value
|
308
|
+
when :lt_eq, :less_than_or_equal
|
309
|
+
ExceptionQueue.enqueue_exception("#{error_msg} less than or equal to #{value} but found #{actual}") unless actual <= value
|
310
|
+
when :gt, :greater_than
|
311
|
+
ExceptionQueue.enqueue_exception("#{error_msg} greater than #{value} but found #{actual}") unless actual > value
|
312
|
+
when :gt_eq, :greater_than_or_equal
|
313
|
+
ExceptionQueue.enqueue_exception("#{error_msg} greater than or equal to #{value} but found #{actual}") unless actual >= value
|
314
|
+
end
|
315
|
+
end
|
316
|
+
else
|
317
|
+
ExceptionQueue.enqueue_assert_equal(state, actual, "Expected #{ui_object.get_locator} #{property.to_s} property")
|
318
|
+
end
|
302
319
|
end
|
303
320
|
end
|
304
321
|
ExceptionQueue.post_exceptions
|
@@ -303,7 +303,24 @@ module TestCentricity
|
|
303
303
|
actual = ui_object.get_table_cell(cell[0].to_i, cell[1].to_i)
|
304
304
|
end
|
305
305
|
end
|
306
|
-
|
306
|
+
|
307
|
+
if state.is_a?(Hash) && state.length == 1
|
308
|
+
error_msg = "Expected #{ui_object.get_locator} #{property.to_s} property to be"
|
309
|
+
state.each do |key, value|
|
310
|
+
case key
|
311
|
+
when :lt, :less_than
|
312
|
+
ExceptionQueue.enqueue_exception("#{error_msg} less than #{value} but found #{actual}") unless actual < value
|
313
|
+
when :lt_eq, :less_than_or_equal
|
314
|
+
ExceptionQueue.enqueue_exception("#{error_msg} less than or equal to #{value} but found #{actual}") unless actual <= value
|
315
|
+
when :gt, :greater_than
|
316
|
+
ExceptionQueue.enqueue_exception("#{error_msg} greater than #{value} but found #{actual}") unless actual > value
|
317
|
+
when :gt_eq, :greater_than_or_equal
|
318
|
+
ExceptionQueue.enqueue_exception("#{error_msg} greater than or equal to #{value} but found #{actual}") unless actual >= value
|
319
|
+
end
|
320
|
+
end
|
321
|
+
else
|
322
|
+
ExceptionQueue.enqueue_assert_equal(state, actual, "Expected #{ui_object.get_locator} #{property.to_s} property")
|
323
|
+
end
|
307
324
|
end
|
308
325
|
end
|
309
326
|
ExceptionQueue.post_exceptions
|
@@ -16,21 +16,20 @@ module TestCentricity
|
|
16
16
|
Environ.set_device_type('browser')
|
17
17
|
|
18
18
|
case browser.downcase.to_sym
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
initialize_local_browser(browser)
|
19
|
+
when :appium
|
20
|
+
initialize_appium
|
21
|
+
when :browserstack
|
22
|
+
initialize_browserstack
|
23
|
+
when :crossbrowser
|
24
|
+
initialize_crossbrowser
|
25
|
+
when :poltergeist
|
26
|
+
initialize_poltergeist
|
27
|
+
when :saucelabs
|
28
|
+
initialize_saucelabs
|
29
|
+
when :testingbot
|
30
|
+
initialize_testingbot
|
31
|
+
else
|
32
|
+
initialize_local_browser(browser)
|
34
33
|
end
|
35
34
|
|
36
35
|
# set browser window size only if testing with a desktop web browser
|
@@ -57,6 +56,7 @@ module TestCentricity
|
|
57
56
|
browserName: ENV['APP_BROWSER'],
|
58
57
|
deviceName: ENV['APP_DEVICE']
|
59
58
|
}
|
59
|
+
desired_capabilities['avd'] = ENV['APP_DEVICE'] if ENV['APP_PLATFORM_NAME'].downcase.to_sym == :android
|
60
60
|
desired_capabilities['deviceOrientation'] = ENV['ORIENTATION'] if ENV['ORIENTATION']
|
61
61
|
desired_capabilities['udid'] = ENV['APP_UDID'] if ENV['APP_UDID']
|
62
62
|
desired_capabilities['safariInitialUrl'] = ENV['APP_INITIAL_URL'] if ENV['APP_INITIAL_URL']
|
@@ -68,7 +68,6 @@ module TestCentricity
|
|
68
68
|
Capybara.register_driver :appium do |app|
|
69
69
|
appium_lib_options = { server_url: endpoint }
|
70
70
|
all_options = {
|
71
|
-
browser: :safari,
|
72
71
|
appium_lib: appium_lib_options,
|
73
72
|
caps: desired_capabilities
|
74
73
|
}
|
@@ -88,14 +87,14 @@ module TestCentricity
|
|
88
87
|
Environ.set_device_type(Browsers.mobile_device_name(browser))
|
89
88
|
ENV['HOST_BROWSER'] ? host_browser = ENV['HOST_BROWSER'].downcase.to_sym : host_browser = :firefox
|
90
89
|
case host_browser
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
90
|
+
when :firefox
|
91
|
+
profile = Selenium::WebDriver::Firefox::Profile.new
|
92
|
+
profile['general.useragent.override'] = user_agent
|
93
|
+
Capybara::Selenium::Driver.new(app, :profile => profile)
|
94
|
+
when :chrome
|
95
|
+
args = []
|
96
|
+
args << "--user-agent='#{user_agent}'"
|
97
|
+
Capybara::Selenium::Driver.new(app, :browser => :chrome, :args => args)
|
99
98
|
end
|
100
99
|
end
|
101
100
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testcentricity_web
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- A.J. Mrozinski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|