C#技巧:網頁表單自動填寫技術(gmail為例)

來源:互聯網
上載者:User
技巧|網頁

var ie=WScript.createobject("InternetExplorer.Application");
var args = WScript.arguments;
var followme="http://www.google.com/";
if(args.length>0)
{
    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)
{
    doc.forms[0].PersistentCookie.checked=false;
}
doc.forms[0].submit();
SynchronizeIE();
ie.Visible=true;

//等待IE操作結束。
function SynchronizeIE()
{
    while(ie.Busy)
    {
          WScript.Sleep(100);
    }
}
      假定把該檔案儲存為googleSpecific.js,存放在%windir%\system32路徑下,並建立如下內容的一個google.bat檔案同樣放在%windir%\system32路徑下。

@cls

@wscript %windir%\system32\googleSpecific.js  %1 %2 %3 %4 %5 %6 %7 %8 %9

 然後,在命令列執行語句:go mail,就可以直接登陸到你的gmail了。

同樣類似的命令還有:

Go notebook  à便簽簿

http://flappy.cnblogs.com/archive/2006/07/09/446673.html

Go bookmarks à網路收藏夾

如果直接輸入go而不接任何內容的話,則會以你的名義登陸到google.com首頁。另外,googleSpecific.js最好用screnc.exe進行加密,加密後的檔案格式是.jse,但即使是這樣也不能保證檔案中的密碼不被別人看到(scrdec可以進行解密)。更好的保密手段還請各位多提意見。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.