1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| it('should do a touch gesture', function () { var screen = $('//UITextbox');
screen.touchAction('tap'); browser.touchAction('//UITextbox', 'tap')
browser.touchAction({ actions: 'tap', x: 300, y:200 })
browser.touchAction({ actions: 'tap', x: 30, y:20, selector: '//UIAApplication[1]/UIAElement[2]' })
screen.touchAction([ 'press', { action: 'moveTo', x: 200, y: 0 }, 'release' ]) browser.touchAction('//UITextbox', [ 'press', { action: 'moveTo', x: 200, y: 0}, 'release' ])
screen.touchAction([ 'press', { action: 'moveTo', selector: '//UIAApplication[1]/UIAElement[2]' }, 'release' ])) });
|