我的应用程序可能会自动发送值并自动填充网页字段吗?
for example : after clicking on a button in my app , the app open a Specified webpage and fill The Fields with my values - like user & password
编辑:
发送值并填写网页字段后,我的应用程序可能会自动点击提交按钮?
答案 0 :(得分:1)
确保已拨打
webView.getSettings().setJavaScriptEnabled(true);
编写一个javascript函数来执行您想要的操作,然后您可以这样调用它:
webView.loadUrl("javascript:myfunction('first', 'last')");
例如。