@@ -54,9 +54,7 @@ def pinch(percentage = 25, auto_perform = true, driver = $driver)
54
54
rate = Float ( percentage ) / 100
55
55
pinch = MultiTouch . new ( driver )
56
56
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?
60
58
top , bottom = pinch_android ( rate , pinch . driver )
61
59
else
62
60
top , bottom = pinch_ios ( rate , pinch . driver )
@@ -98,9 +96,7 @@ def zoom(percentage = 200, auto_perform = true, driver = $driver)
98
96
rate = 100 / Float ( percentage )
99
97
zoom = MultiTouch . new ( driver )
100
98
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?
104
100
top , bottom = zoom_android ( rate , zoom . driver )
105
101
else
106
102
top , bottom = zoom_ios ( rate , zoom . driver )
@@ -121,28 +117,11 @@ def pinch_android(rate, driver)
121
117
122
118
top = ::Appium ::Core ::TouchAction . new ( driver )
123
119
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
125
121
126
122
bottom = ::Appium ::Core ::TouchAction . new ( driver )
127
123
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
146
125
147
126
[ top , bottom ]
148
127
end
@@ -154,11 +133,11 @@ def pinch_ios(rate, driver)
154
133
155
134
top = ::Appium ::Core ::TouchAction . new ( driver )
156
135
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
158
137
159
138
bottom = ::Appium ::Core ::TouchAction . new ( driver )
160
139
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
162
141
163
142
[ top , bottom ]
164
143
end
@@ -170,28 +149,11 @@ def zoom_android(rate, driver)
170
149
171
150
top = ::Appium ::Core ::TouchAction . new ( driver )
172
151
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
174
153
175
154
bottom = ::Appium ::Core ::TouchAction . new ( driver )
176
155
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
195
157
196
158
[ top , bottom ]
197
159
end
@@ -203,11 +165,11 @@ def zoom_ios(rate, driver)
203
165
204
166
top = ::Appium ::Core ::TouchAction . new ( driver )
205
167
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
207
169
208
170
bottom = ::Appium ::Core ::TouchAction . new ( driver )
209
171
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
211
173
212
174
[ top , bottom ]
213
175
end
0 commit comments