I need to simulate a double or triple or more simultaneously left clicks on top of the webview. It doesn't matter which part of the webview, since I'm NOT going to click on an html element.
I need to click only after the webview webpage is loaded ( that's why i'm using sleep)... Is there any event like in vb.net "documentcompleted"?
I've tried this code
but it doesn't perform any click..
Any idea?
I need to click only after the webview webpage is loaded ( that's why i'm using sleep)... Is there any event like in vb.net "documentcompleted"?
I've tried this code
B4X:
Sub Activity_Create(FirstTime As Boolean)sleep(1000)
touchbutton(webview1)
end sub
Sub touchButton(w as webview)
Dim r As Reflector
r.Target = w
r.RunMethod("performClick")
End Sub
but it doesn't perform any click..
Any idea?