testa_appium_driver 0.1.24 → 0.1.25
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/Gemfile.lock +1 -1
- data/lib/testa_appium_driver/common/scroll_actions.rb +2 -7
- data/testa_appium_driver.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b29b2698137e80b650a08f6fc0069137d6244b65c65b5a44718c3e69c9457c04
|
|
4
|
+
data.tar.gz: 763f9c945a09df4cc1276752a2f93eec2b6130c46fd8ecda8b7010d58ea5cbd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6aa78313a9b30df1b95e283b094dc36eab8336e48e8b10c30f4557388bae55e4c586c3f120de9507fc452dde783639a25b1200b08cf1d404b37c23f9804d3fb4
|
|
7
|
+
data.tar.gz: 92e1e7c85f897af2efa09c70c4a3575575468f34b8a583d71688814fbab8d218752b98257e64c64b1187675d64ec985a19562c4edbbe2e4799c85874df9dc9cc
|
data/Gemfile.lock
CHANGED
|
@@ -196,15 +196,10 @@ module ::TestaAppiumDriver
|
|
|
196
196
|
end
|
|
197
197
|
end
|
|
198
198
|
|
|
199
|
-
def drag_to(
|
|
200
|
-
|
|
201
|
-
coords = b.center
|
|
202
|
-
w3c_drag_to(coords.x, coords.y, x, y)
|
|
199
|
+
def drag_to(x0, y0, x1, y1)
|
|
200
|
+
w3c_drag_to(x0, y0, x1, y1)
|
|
203
201
|
end
|
|
204
202
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
203
|
def is_aligned?(with, element)
|
|
209
204
|
align_bounds = @locator.bounds(force_cache_element: element)
|
|
210
205
|
case with
|
data/testa_appium_driver.gemspec
CHANGED