testcentricity_web 3.2.13 → 3.2.14
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +10 -10
- data/lib/testcentricity_web/version.rb +1 -1
- data/lib/testcentricity_web/web_elements/ui_elements_helper.rb +12 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d9e4852a49e06b7eef79080fa6fa7ae3b38b34bb566efdfc044a0622a91142a
|
4
|
+
data.tar.gz: dac3352d8bdfdbd07b1ee70952592682f47cf703437fa1d784252ac597b27daa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d723a2e9022b234385e3b82018322e491e2f601889b1918deb1458ea3960470bd75053fe0857f62b557c44aeadb523a386ad48c409c32c6049008ddc6a615e4
|
7
|
+
data.tar.gz: c8136a283701941d5adeca2599070bd96c4a8cc03ede114b380848e1933c4fb54490341c015b67bb6e6191d070f75f402b36dce8e91ede93828b08800a7fb77a
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
testcentricity_web (3.2.
|
4
|
+
testcentricity_web (3.2.14)
|
5
5
|
appium_lib
|
6
6
|
browserstack-local
|
7
7
|
capybara (>= 3.1, < 4)
|
@@ -21,11 +21,11 @@ GEM
|
|
21
21
|
specs:
|
22
22
|
addressable (2.7.0)
|
23
23
|
public_suffix (>= 2.0.2, < 5.0)
|
24
|
-
appium_lib (10.
|
24
|
+
appium_lib (10.6.0)
|
25
25
|
appium_lib_core (~> 3.3)
|
26
26
|
nokogiri (~> 1.8, >= 1.8.1)
|
27
27
|
tomlrb (~> 1.1)
|
28
|
-
appium_lib_core (3.
|
28
|
+
appium_lib_core (3.6.1)
|
29
29
|
faye-websocket (~> 0.10.0)
|
30
30
|
selenium-webdriver (~> 3.14, >= 3.14.1)
|
31
31
|
axiom-types (0.1.1)
|
@@ -33,7 +33,7 @@ GEM
|
|
33
33
|
ice_nine (~> 0.11.0)
|
34
34
|
thread_safe (~> 0.3, >= 0.3.1)
|
35
35
|
browserstack-local (1.3.0)
|
36
|
-
capybara (3.
|
36
|
+
capybara (3.32.1)
|
37
37
|
addressable
|
38
38
|
mini_mime (>= 0.1.3)
|
39
39
|
nokogiri (~> 1.8)
|
@@ -51,7 +51,7 @@ GEM
|
|
51
51
|
thread_safe (~> 0.3, >= 0.3.1)
|
52
52
|
equalizer (0.0.11)
|
53
53
|
eventmachine (1.2.7)
|
54
|
-
faker (2.
|
54
|
+
faker (2.11.0)
|
55
55
|
i18n (>= 1.6, < 2)
|
56
56
|
faye-websocket (0.10.9)
|
57
57
|
eventmachine (>= 0.12.0)
|
@@ -64,9 +64,9 @@ GEM
|
|
64
64
|
mini_portile2 (2.4.0)
|
65
65
|
nokogiri (1.10.9)
|
66
66
|
mini_portile2 (~> 2.4.0)
|
67
|
-
os (1.0
|
68
|
-
power_assert (1.1.
|
69
|
-
public_suffix (4.0.
|
67
|
+
os (1.1.0)
|
68
|
+
power_assert (1.1.7)
|
69
|
+
public_suffix (4.0.4)
|
70
70
|
rack (2.2.2)
|
71
71
|
rack-test (1.1.0)
|
72
72
|
rack (>= 1.0, < 3)
|
@@ -74,7 +74,7 @@ GEM
|
|
74
74
|
redcarpet (3.5.0)
|
75
75
|
regexp_parser (1.7.0)
|
76
76
|
ruby-ole (1.2.12.2)
|
77
|
-
rubyzip (2.
|
77
|
+
rubyzip (2.3.0)
|
78
78
|
selenium-webdriver (3.142.7)
|
79
79
|
childprocess (>= 0.5, < 4.0)
|
80
80
|
rubyzip (>= 1.2.2)
|
@@ -83,7 +83,7 @@ GEM
|
|
83
83
|
test-unit (3.3.5)
|
84
84
|
power_assert
|
85
85
|
thread_safe (0.3.6)
|
86
|
-
tomlrb (1.
|
86
|
+
tomlrb (1.3.0)
|
87
87
|
virtus (1.0.5)
|
88
88
|
axiom-types (~> 0.1)
|
89
89
|
coercible (~> 1.0)
|
@@ -158,6 +158,18 @@ module TestCentricity
|
|
158
158
|
obj.click_at(x, y)
|
159
159
|
end
|
160
160
|
|
161
|
+
# Scroll the object to its top, middle, or bottom
|
162
|
+
#
|
163
|
+
# @param position [Symbol] :top, :bottom, :center
|
164
|
+
# @example
|
165
|
+
# cue_list.scroll_to(:bottom)
|
166
|
+
#
|
167
|
+
def scroll_to(position)
|
168
|
+
obj, type = find_element
|
169
|
+
object_not_found_exception(obj, type)
|
170
|
+
obj.scroll_to(position)
|
171
|
+
end
|
172
|
+
|
161
173
|
def set(value)
|
162
174
|
obj, type = find_element
|
163
175
|
object_not_found_exception(obj, 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: 3.2.
|
4
|
+
version: 3.2.14
|
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: 2020-
|
11
|
+
date: 2020-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|