Sorry if I do ask a question which has been asked before. I was searching a lot in this forum and via Google but couldn't find an answer.
I'm very new to Monkeyrunner and trying to solve the problem to automatically unlog my USB device which is secured with a pattern.
Is it possible to add a drag functionality with 2 different directions? A to B to C? A pattern usually needs at least 4 dots, which makes two directions for dragging. I wrote this script which works fine observing the screen, but it interrupts in between which is not accepted by the phone:
print ("Unlocking screen.")
device.wake()
device.touch(400, 314, MonkeyDevice.DOWN)
device.drag((400, 314),(80, 635), 1,3)
device.drag((80, 635),(400, 635), 1,3)
device.touch(400, 635, MonkeyDevice.UP)
I hope someone is able to help. Thanks!