Hey @flashbacker I just remembered you can always use the Web Render TOP’s executeJavaScript()
method to execute any javascript you want. You can use this to simulate any click, touch, or basically any other event.
For an example see my SimpleBrowser which I made many years ago. This was from before the interactMouse()
method existed, so this is Python sending a javascript string to the browser to simulate every mouse click: SimpleBrowser (099)
And here’s an example how to simulate touch events in javascript:
have fun!