Call an action from WebView

Hi community! I want to call an action from web page that shown by WebView but without call this action from inside the page itself,
Like call click action if there are a button in webpage to upload image without click on the button inside the web page but by click on the button in side the app and out side website,
I have already tried to do this by block of “evaluate JavaScript”
But it didn’t work for me .
So if there are any idea or method to do this
Please tell me ,
My aim is to control web page actions from app .
Thanks

5.Click on a button
To perform onClick function we shall have to call click() for that element.
Js: document.getElementById(“btn_id”).click();

1 Like

Ok thank you very much that’s exactly what I look for.

If it solves your problem , mark it as solution, so that it will help others to find solution easily

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.