Is there any way to detect click in customWebView extension… Please help me to resolve this problem… I am stuck
NOTE:- I don’t know anything about java or HTML.
Use evaluate java script,search google
Hi mate, the button on your webview site onclick=“return click();” Call a function with javascript and create a function named “click” with console.log(“clicked”); Send text to console with command and check it with webview plugin.
You Can try Like This Using Evaluate Javascript
document.getElementById("enter your id here").click;
Or
document.getElementByClassName("Enter your Class Name ").click();
Or You Can send the website url and on which item you wanna click
1 Like