以下是引用片段:
var ie=WScript.createobject("InternetExplorer.Application");
var args = WScript.arguments;
var followme=http://www.google.com/;
if(args.length0)
{
followme+=args(0);
}
ie.Navigate("https://www.google.com/accounts/Login?continue="+followme);
SynchronizeIE();
var doc=ie.document;
doc.forms[0].Email.value="lixianmin@gmail.com";
doc.forms[0].Passwd.value="密码写在这里";
//这是因为PersistentCookie这个checkbox有时候有而有时候没有。
if(doc.forms[0].PersistentCookie!=null)
{ ...[ 查看全文 ]