gpt4 book ai didi

dom - 我们可以在 AutoHotKey 中执行 getElementByID 吗?

转载 作者:行者123 更新时间:2023-12-04 21:36:00 35 4
gpt4 key购买 nike

我有这个 VBS 代码,它非常有用,但由于 Chrome 不支持 VB 脚本。

我需要找到替代方案,即 autohotkey。

有人可以帮我将这段代码转换成 AutoHotKey,如果不是其中的一部分的话。

这是部分代码 我需要在 AutoHotKey 中完成

  With IE.Document
.getElementByID("login_username").value = "myuser"
.getElementByID("login_password").value = "mypass"
.getElementByID("frmLogin").submit
End With

完整代码在此

WScript.Quit Main

Function Main
Set IE = WScript.CreateObject("InternetExplorer.Application", "IE_")
IE.Visible = True
IE.Navigate "http://desistream.tv/en/index.shtml"
Wait IE
With IE.Document
.getElementByID("login_username").value = "myuser"
.getElementByID("login_password").value = "mypass"
.getElementByID("frmLogin").submit
End With
End Function

Sub Wait(IE)
Do
WScript.Sleep 500
Loop While IE.ReadyState < 4 And IE.Busy
Do
WScript.Sleep 500
Loop While IE.ReadyState < 4 And IE.Busy
End Sub

Sub IE_OnQuit
On Error Resume Next
WScript.StdErr.WriteLine "IE closed before script finished."
WScript.Quit
End Sub

最佳答案

#SingleInstance, force
#NoEnv
OnExit, ExitSub

IE := ComObjCreate("InternetExplorer.Application")
IE.Visible := true
IE.Navigate("http://desistream.tv/en/index.shtml")

Wait(IE)

pDoc := IE.document

pDoc.getElementByID("username").value := "myuser"
pDoc.getElementByID("pass").value := "mypass"
pDoc.all.frmLogin.submit()

return


+Esc:: ;shift + esc
ExitSub:
try
IE.Quit
IE := ""
Exitapp

Wait(IE) {
while IE.readyState!=4 || IE.document.readyState != "complete" || IE.busy
sleep 10
}

我想就是这样了

希望对你有帮助

关于dom - 我们可以在 AutoHotKey 中执行 getElementByID 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14246398/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com