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

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -