Skip to content

Commit 7dcb4fa

Browse files
authored
remove hot fix actions (#773)
* remove hot fix actions * update core
1 parent 778aaf4 commit 7dcb4fa

File tree

8 files changed

+30
-68
lines changed

8 files changed

+30
-68
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Release tags are https://github.com/appium/ruby_lib/releases .
99
### 2. Bug fixes
1010

1111
### 3. Deprecations
12+
- Changed the name of arguments
13+
- `swipe(start_x:, start_y:, end_x:, end_y:)` instead of `swipe(start_x:, start_y:, offset_x:, offset_y:)`
1214

1315
## v9.11.1
1416
### 1. Enhancements

android_tests/lib/android/specs/common/device_touchaction.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def before_first
3535
t 'swipe' do
3636
wait { text('Animation').click }
3737
wait { text_exact('Bouncing Balls').click }
38-
wait { Appium::TouchAction.new.swipe(start_x: 0.75, start_y: 0.25, offset_x: 0.0, offset_y: 49.75).perform }
38+
wait { Appium::TouchAction.new.swipe(start_x: 0.75, start_y: 0.25, end_x: 0.0, end_y: 49.75).perform }
3939
2.times { back }
4040
wait { text_exact 'NFC' }
4141
end

android_tests/lib/android/specs/device/touch_actions.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def swipe_till_text_visible(seen_text)
1818
# [AndroidBootstrap] [BOOTSTRAP LOG] [debug] Swiping from [x=600.0, y=919.0] to [x=600.0, y=819.0] with steps: 6
1919
# [debug] [AndroidBootstrap] Received command result from bootstrap
2020
# rubocop:enable Metrics/LineLength
21-
swipe start_x: start_x, start_y: start_y, offset_x: 0.0, offset_y: - 100
21+
swipe start_x: start_x, start_y: start_y, end_x: 0.0, end_y: - 100
2222
text(seen_text).displayed?
2323
end
2424
end

appium_lib.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
1414
s.require_paths = ['lib']
1515

16-
s.add_runtime_dependency 'appium_lib_core', '~> 1.4.2'
16+
s.add_runtime_dependency 'appium_lib_core', '~> 1.5.0'
1717
s.add_runtime_dependency 'tomlrb', '~> 1.1'
1818
s.add_runtime_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
1919

ios_tests/lib/ios/specs/device/device.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ def go_back
4949

5050
t 'swipe' do
5151
touch_action = Appium::TouchAction.new.swipe(start_x: 75, start_y: 500,
52-
offset_x: 75, offset_y: 20, duration: 500).perform
52+
end_x: 75, end_y: 20, duration: 500).perform
5353
touch_action.actions.must_equal []
5454

55-
touch_action = Appium::TouchAction.new.swipe(start_x: 75, start_y: 500, offset_x: 75, offset_y: 20, duration: 500)
55+
touch_action = Appium::TouchAction.new.swipe(start_x: 75, start_y: 500, end_x: 75, end_y: 20, duration: 500)
5656

5757
touch_action.actions[0][:action].must_equal :press
5858
touch_action.actions[0][:options].must_equal(x: 75, y: 500)

ios_tests/lib/ios/specs/device/touch_actions.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def after_last
4444
# [debug] [MJSONWP] Responding to client with driver.performTouch() result: ""
4545
# [HTTP] <-- POST /wd/hub/session/8b651f03-0fbc-43f0-aaf2-243d0650f6aa/touch/perform 200 1895 ms - 74
4646
# rubocop:enable Metrics/LineLength
47-
Appium::TouchAction.new.swipe(start_x: start_x, start_y: start_y, offset_x: 0, offset_y: - 50).perform
47+
Appium::TouchAction.new.swipe(start_x: start_x, start_y: start_y, end_x: 0, end_y: - 50).perform
4848
ele_index(ui_ios.static_text, 2).text.must_equal 'Chris Armstrong - 0' # depends on iOS
4949
end
5050

lib/appium_lib/common/multi_touch.rb

+10-48
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ def pinch(percentage = 25, auto_perform = true, driver = $driver)
5454
rate = Float(percentage) / 100
5555
pinch = MultiTouch.new(driver)
5656

57-
if driver.automation_name_is_xcuitest?
58-
top, bottom = pinch_for_xcuitest(rate, pinch.driver)
59-
elsif driver.device_is_android?
57+
if driver.device_is_android?
6058
top, bottom = pinch_android(rate, pinch.driver)
6159
else
6260
top, bottom = pinch_ios(rate, pinch.driver)
@@ -98,9 +96,7 @@ def zoom(percentage = 200, auto_perform = true, driver = $driver)
9896
rate = 100 / Float(percentage)
9997
zoom = MultiTouch.new(driver)
10098

101-
if driver.automation_name_is_xcuitest?
102-
top, bottom = zoom_for_xcuitest(rate, zoom.driver)
103-
elsif driver.device_is_android?
99+
if driver.device_is_android?
104100
top, bottom = zoom_android(rate, zoom.driver)
105101
else
106102
top, bottom = zoom_ios(rate, zoom.driver)
@@ -121,28 +117,11 @@ def pinch_android(rate, driver)
121117

122118
top = ::Appium::Core::TouchAction.new(driver)
123119
top.swipe start_x: offset, start_y: 1.0 * height + offset,
124-
offset_x: 0.0, offset_y: (rate - 1) * height, duration: 1_000
120+
end_x: 0.0, end_y: (rate - 1) * height, duration: 1_000
125121

126122
bottom = ::Appium::Core::TouchAction.new(driver)
127123
bottom.swipe start_x: offset, start_y: 0.0 + offset,
128-
offset_x: 0.0, offset_y: (1 - rate) * height, duration: 1_000
129-
130-
[top, bottom]
131-
end
132-
133-
# @private
134-
def pinch_for_xcuitest(rate, driver)
135-
height = 100
136-
offset = 100
137-
138-
ele = driver.find_element :class, 'XCUIElementTypeApplication'
139-
top = ::Appium::Core::TouchAction.new(driver)
140-
top.swipe({ start_x: 0.5, start_y: 0.0 + offset,
141-
offset_x: 0.0, offset_y: (1 - rate) * height }, ele)
142-
143-
bottom = ::Appium::Core::TouchAction.new(driver)
144-
bottom.swipe({ start_x: 0.5, start_y: 1.0 + offset,
145-
offset_x: 0.0, offset_y: rate * height }, ele)
124+
end_x: 0.0, end_y: (1 - rate) * height, duration: 1_000
146125

147126
[top, bottom]
148127
end
@@ -154,11 +133,11 @@ def pinch_ios(rate, driver)
154133

155134
top = ::Appium::Core::TouchAction.new(driver)
156135
top.swipe start_x: 0.5, start_y: 0.0 + offset,
157-
offset_x: 0.0, offset_y: (1 - rate) * height, duration: 1_000
136+
end_x: 0.0, end_y: (1 - rate) * height, duration: 1_000
158137

159138
bottom = ::Appium::Core::TouchAction.new(driver)
160139
bottom.swipe start_x: 0.5, start_y: 1.0 + offset,
161-
offset_x: 0.0, offset_y: rate * height, duration: 1_000
140+
end_x: 0.0, end_y: rate * height, duration: 1_000
162141

163142
[top, bottom]
164143
end
@@ -170,28 +149,11 @@ def zoom_android(rate, driver)
170149

171150
top = ::Appium::Core::TouchAction.new(driver)
172151
top.swipe start_x: offset, start_y: (1.0 - rate) * height + offset,
173-
offset_x: 0.0, offset_y: (rate - 1.0) * height, duration: 1_000
152+
end_x: 0.0, end_y: (rate - 1.0) * height, duration: 1_000
174153

175154
bottom = ::Appium::Core::TouchAction.new(driver)
176155
bottom.swipe start_x: offset, start_y: rate * height + offset,
177-
offset_x: 0.0, offset_y: (1.0 - rate) * height, duration: 1_000
178-
179-
[top, bottom]
180-
end
181-
182-
# @private
183-
def zoom_for_xcuitest(rate, driver)
184-
height = 100
185-
offset = 100
186-
187-
ele = driver.find_element :class, 'XCUIElementTypeApplication'
188-
top = ::Appium::Core::TouchAction.new(driver)
189-
top.swipe({ start_x: 0.5, start_y: (1 - rate) * height + offset,
190-
offset_x: 0.0, offset_y: - (1 - rate) * height }, ele)
191-
192-
bottom = ::Appium::Core::TouchAction.new(driver)
193-
bottom.swipe({ start_x: 0.5, start_y: rate * height + offset,
194-
offset_x: 0.0, offset_y: (1 - rate) * height }, ele)
156+
end_x: 0.0, end_y: (1.0 - rate) * height, duration: 1_000
195157

196158
[top, bottom]
197159
end
@@ -203,11 +165,11 @@ def zoom_ios(rate, driver)
203165

204166
top = ::Appium::Core::TouchAction.new(driver)
205167
top.swipe start_x: 0.5, start_y: (1 - rate) * height + offset,
206-
offset_x: 0.0, offset_y: - (1 - rate) * height, duration: 1_000
168+
end_x: 0.0, end_y: - (1 - rate) * height, duration: 1_000
207169

208170
bottom = ::Appium::Core::TouchAction.new(driver)
209171
bottom.swipe start_x: 0.5, start_y: rate * height + offset,
210-
offset_x: 0.0, offset_y: (1 - rate) * height, duration: 1_000
172+
end_x: 0.0, end_y: (1 - rate) * height, duration: 1_000
211173

212174
[top, bottom]
213175
end

lib/appium_lib/common/touch_actions.rb

+12-14
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module Appium
1717
# @example
1818
#
1919
# # called `swipe(...).perform` in this method.
20-
# swipe(start_x: 75, start_y: 500, offset_x: 75, offset_y: 20, duration: 500)
20+
# swipe(start_x: 75, start_y: 500, end_x: 75, end_y: 20, duration: 500)
2121
#
2222
# If you'd like to perform the chain with an arbitrary driver:
2323
#
@@ -48,25 +48,23 @@ def initialize(driver = $driver)
4848
super driver
4949
end
5050

51-
def swipe(opts, ele = nil)
51+
def swipe(opts)
5252
start_x = opts.fetch :start_x, 0
5353
start_y = opts.fetch :start_y, 0
54-
offset_x = opts.fetch :offset_x, nil
55-
offset_y = opts.fetch :offset_y, nil
56-
end_x = opts.fetch :end_x, nil
57-
end_y = opts.fetch :end_y, nil
54+
end_x = opts.fetch :end_x, 0
55+
end_y = opts.fetch :end_y, 0
5856
duration = opts.fetch :duration, 200
5957

60-
if end_x || end_y
61-
warn '[DEPRECATION] end_x and end_y will be removed. Please use offset_x and offset_y for all platform.'
62-
end_x ||= 0
63-
end_y ||= 0
64-
65-
offset_x = end_x - start_x
66-
offset_y = end_y - start_y
58+
if opts[:offset_x]
59+
::Appium::Logger.warn('[DEPRECATED] :offset_x was renamed to :end_x to indicate as an absolute point.')
60+
end_x = opts.fetch :offset_x, 0
61+
end
62+
if opts[:offset_y]
63+
::Appium::Logger.warn('[DEPRECATED] :offset_y was renamed to :end_y to indicate as an absolute point.')
64+
end_y = opts.fetch :offset_y, 0
6765
end
6866

69-
super(start_x: start_x, start_y: start_y, offset_x: offset_x, offset_y: offset_y, duration: duration, ele: ele)
67+
super(start_x: start_x, start_y: start_y, end_x: end_x, end_y: end_y, duration: duration)
7068
end
7169
end # class TouchAction
7270
end # module Appium

0 commit comments

Comments
 (0)