I\'m trying to automatically fill a form from the website of my school. I\'ve seen some ways to do with javascrip.
Here is my code:
@Override
prote
You just need to enable domelements
myview.getSettings().setDomStorageEnabled(true);
and then use getelementby id like
javascript:var x = document.getElementById('myfield').value = 'aaa';
and do this in
onPageFinishedLoading(){}
got this from the link Android WebView always returns null for javascript getElementById on loadUrl