標題:
開啟網頁登入帳密
[打印本頁]
作者:
eric7765
時間:
2019-10-9 10:52
標題:
開啟網頁登入帳密
本帖最後由 eric7765 於 2019-10-9 10:57 編輯
請問前輩們 有好幾組帳密 需要登入網頁 " http://hk799.net/ "
不知道要怎麼寫 才能登入網頁後 自動輸入帳密 拜託前輩指點
目前是用google 瀏覽器 要改成 ie瀏覽器也行
謝謝了
[attach]31328[/attach]
作者:
GBKEE
時間:
2020-4-23 16:24
回復
1#
eric7765
Option Explicit
Sub Ex_網路郵局()
With CreateObject("InternetExplorer.Application")
.Visible = True
'.Navigate "http://hk799.net/" '***這網址拒絕讀取
.Navigate "https://hk799.net/tpl/login_webmail.php" '***改用這網址試試看***
Do While .Busy Or .ReadyState <> 4: DoEvents: Loop
'<input name="inpN" tabindex="1" class="save_01" id="inpN" type="text">
.Document.getElementById("inpN").Value = "帳號"
'<input name="inpP" tabindex="2" class="save_01" id="inpP" type="password">
.Document.getElementById("inpP").Value = "密碼"
Do While .Busy Or .ReadyState <> 4: DoEvents: Loop
'<input name="loginbutton" tabindex="3" onclick="proLogin(document.kk.inpN.value,document.kk.inpP.value);" type="button" value="登入">
.Document.querySelector("input[name='loginbutton'][tabindex='3'][type='button']").FireEvent ("onclick")
' .Quit '關閉網頁
End With
End Sub
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)