Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 25th, 2012  |  syntax: None  |  size: 0.45 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Fill fields in webview automatically
  2. String username = "cristian";
  3. webview.loadUrl("javascript:document.getElementById('username').value = '"+username+"';");
  4.        
  5. webView.loadUrl("javascript: {" +
  6.             "document.getElementById('username').value = '"+uname +"';" +
  7.             "document.getElementById('password').value = '"+password+"';" +
  8.             "var frms = document.getElementsByName('loginForm');" +
  9.             "frms[0].submit(); };");