← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #182104]: iOS: need command to tap and hold to enter "jiggly" mode

 

Question #182104 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/182104

    Status: Needs information => Solved

David Blankinship confirmed that the question is solved:
Thanks - the region class (and the mouseDown method within it) was
definitely the key.  I ended up implementing an approach along the lines
of the following:

<<
click('${homebutton.id.path}')
region1=find('${welcomescreenwithtestapp.id.path}')
region1.doubleClick('${homebutton.id.path}')
region2=find('${welcomescreenwithtestappactive.id.path}')
region2.mouseMove('${myapp.id.path}')
region2.mouseDown(Button.LEFT)
region2.wait('${deleteworklistdemoapp.id.path}',5)
region2.mouseUp()
click('${deleteworklistdemoapp.id.path}')
click('${homebutton.id.path}')
>>

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.