Hi, after I load a url in webview , I try to run following JS code to put something in google search box. But, after running the code, webview changes to value and only show the value!!!
B4X:
WebView1.LoadUrl("http://google.com")
Sub Button1_Click
MyWebViewExtras.executeJavascript(WebView1, "document.getElementById('lst-ib').value='Test1';")
End Sub