File tree 3 files changed +26
-4
lines changed
3 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ helpers.parseTouch = async function (gestures, multi) {
253
253
let prevPos = null ,
254
254
time = 0 ;
255
255
for ( let state of touchStateObjects ) {
256
- if ( _ . isUndefined ( state . options . x ) && _ . isUndefined ( state . options . y ) ) {
256
+ if ( _ . isUndefined ( state . options . x ) && _ . isUndefined ( state . options . y ) && prevPos !== null ) {
257
257
// this happens with wait
258
258
state . options . x = prevPos . x ;
259
259
state . options . y = prevPos . y ;
@@ -264,15 +264,20 @@ helpers.parseTouch = async function (gestures, multi) {
264
264
state . options . y += prevPos . y ;
265
265
}
266
266
delete state . options . offset ;
267
- prevPos = state . options ;
267
+ if ( ! _ . isUndefined ( state . options . x ) && ! _ . isUndefined ( state . options . y ) )
268
+ prevPos = state . options ;
268
269
269
270
if ( multi ) {
270
271
var timeOffset = state . timeOffset ;
271
272
time += timeOffset ;
272
273
state . time = androidHelpers . truncateDecimals ( time , 3 ) ;
273
274
274
275
// multi gestures require 'touch' rather than 'options'
275
- state . touch = state . options ;
276
+ if ( ! _ . isUndefined ( state . options . x ) && ! _ . isUndefined ( state . options . y ) )
277
+ state . touch = {
278
+ x : state . options . x ,
279
+ y : state . options . y
280
+ } ;
276
281
delete state . options ;
277
282
}
278
283
delete state . timeOffset ;
Original file line number Diff line number Diff line change 30
30
"dependencies" : {
31
31
"adm-zip" : " ^0.4.7" ,
32
32
"appium-adb" : " ^2.5.0" ,
33
- "appium-android-bootstrap" : " ^2.6.0 " ,
33
+ "appium-android-bootstrap" : " ^2.7.5 " ,
34
34
"appium-android-ime" : " ^2.0.0" ,
35
35
"appium-base-driver" : " ^2.0.0" ,
36
36
"appium-chromedriver" : " ^2.9.0" ,
Original file line number Diff line number Diff line change @@ -150,4 +150,21 @@ describe('Touch', () => {
150
150
tests ( 4.4 , 1 ) ;
151
151
} ) ;
152
152
} ) ) ;
153
+
154
+ describe ( 'parseTouch' , ( ) => {
155
+ it ( 'should handle actions starting with wait' , async ( ) => {
156
+ let actions = [ { action : 'wait' , options : { ms : 500 } } ,
157
+ { action : 'tap' , options : { x : 100 , y : 101 } } ] ;
158
+
159
+ let touchStateObject = await driver . parseTouch ( actions , true ) ;
160
+ touchStateObject . should . eql ( [ {
161
+ action : 'wait' ,
162
+ time : 0.5 ,
163
+ } , {
164
+ action : 'tap' ,
165
+ touch : { x : 100 , y : 101 } ,
166
+ time : 0.505 ,
167
+ } ] ) ;
168
+ } ) ;
169
+ } ) ;
153
170
} ) ;
You can’t perform that action at this time.
0 commit comments