android - How to click a button or checkbox on a HTML page and reload the page AUTOMATICALLY -
i make android function analyze web content , automatically click submit button , reload page updating. have on webview , find line of button. not know next. got ideas?
try adding button
js
html
file:
<button onclick="myfunction()">reload page</button> <script> function myfunction() { location.reload(); } </script>
Comments
Post a Comment