Skip to content

Commit d9188de

Browse files
committed
Fixes appium#171, removes unused state.touch parameters
1 parent 23c41c8 commit d9188de

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

lib/commands/touch.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ helpers.parseTouch = async function (gestures, multi) {
253253
let prevPos = null,
254254
time = 0;
255255
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) {
257257
// this happens with wait
258258
state.options.x = prevPos.x;
259259
state.options.y = prevPos.y;
@@ -264,15 +264,20 @@ helpers.parseTouch = async function (gestures, multi) {
264264
state.options.y += prevPos.y;
265265
}
266266
delete state.options.offset;
267-
prevPos = state.options;
267+
if (!_.isUndefined(state.options.x) && !_.isUndefined(state.options.y))
268+
prevPos = state.options;
268269

269270
if (multi) {
270271
var timeOffset = state.timeOffset;
271272
time += timeOffset;
272273
state.time = androidHelpers.truncateDecimals(time, 3);
273274

274275
// 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+
};
276281
delete state.options;
277282
}
278283
delete state.timeOffset;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"dependencies": {
3131
"adm-zip": "^0.4.7",
3232
"appium-adb": "^2.5.0",
33-
"appium-android-bootstrap": "^2.6.0",
33+
"appium-android-bootstrap": "^2.7.5",
3434
"appium-android-ime": "^2.0.0",
3535
"appium-base-driver": "^2.0.0",
3636
"appium-chromedriver": "^2.9.0",

test/unit/commands/touch-specs.js

+17
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,21 @@ describe('Touch', () => {
150150
tests(4.4, 1);
151151
});
152152
}));
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+
});
153170
});

0 commit comments

Comments
 (0)