I understand how to set the value of a edit box in WebView, and in a browser on PC with Javascript.
It is basically first find out the ID of the edit box (text), then s
This worked perfectly for me:
String ABC="50"; myWebView.loadUrl("javascript: (function(){document.getElementById('countLiveSteps').value ='" + ABC + "';})();");