// Logs into VerizonWireless website // using ExecuteWebScript() to submit // form instead of clicking Login button program VerizonWireless; procedure OnDocumentComplete(URL : string); begin if URL = 'https://myaccount.verizonwireless.com/vzs/loginform' then begin Fill('j_username', '123g45'); // for security reasons, do not hardcode username and password Fill('j_password', 'abcde'); // instead declare as parameters using GetParam() and ExecuteWebScript('loginForm.submit()','javascript'); // define it in the Parameters DB end; end; begin Navigate('https://myaccount.verizonwireless.com/vzs/loginform'); end.