testcentricity_web 0.9.9.9 → 1.0.0
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: 22d71f3ed0269062aea0cdd6e425784903382724
|
4
|
+
data.tar.gz: eb6e00c5302cb496d5e0607090ccbc3dd2cc0f2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fea9e92cab45e6e9d76459413d49957f91c83cce25e9ab46e995eff90702bc9c263512fcde525fe70f0d53a9f26e49955a62bd0c34da381bbccb19b779879e49
|
7
|
+
data.tar.gz: f3c3766d41c2a24c7f4111d7820f1a168e15c9565e49944367bac8f8613af1b0d0f1b4f1f89f9931098cf64a07a0e403352a5d1f4f7a45d9bd75b7da67bad2b9
|
@@ -33,5 +33,12 @@ module TestCentricity
|
|
33
33
|
object_not_found_exception(obj, nil)
|
34
34
|
obj.all(@list_item).count
|
35
35
|
end
|
36
|
+
|
37
|
+
def verify_list_items(expected, enqueue = false)
|
38
|
+
actual = get_list_items
|
39
|
+
enqueue ?
|
40
|
+
ExceptionQueue.enqueue_assert_equal(expected, actual, "Expected list #{@locator}") :
|
41
|
+
assert_equal(expected, actual, "Expected list #{@locator} to be #{expected} but found #{actual}")
|
42
|
+
end
|
36
43
|
end
|
37
44
|
end
|
@@ -1,8 +1,9 @@
|
|
1
1
|
module TestCentricity
|
2
2
|
class UIElement
|
3
|
-
def invoke_siebel_dialog(popup)
|
3
|
+
def invoke_siebel_dialog(popup, seconds = nil)
|
4
4
|
invoke_siebel_popup
|
5
|
-
|
5
|
+
timeout = seconds.nil? ? 15 : seconds
|
6
|
+
popup.wait_until_exists(timeout)
|
6
7
|
end
|
7
8
|
|
8
9
|
def get_siebel_object_type
|
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.
|
4
|
+
version: 1.0.0
|
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-
|
11
|
+
date: 2016-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|