Autohotkey đăng nhập vào Yahoo mail


0

Làm cách nào để Autohotkey chạy tài khoản mail yahoo của tôi VÀ nhập mật khẩu của tôi với một phím nóng? Tôi có thể lấy nó để hiển thị trang đăng nhập Yahoo, nhưng không nhập mật khẩu của tôi.

Câu trả lời:


0

Một số ví dụ, ở đây sử dụng một cá thể IE và DOM:

`(oIE:=ComObjCreate("InternetExplorer.Application"))
.navigate("https://login.yahoo.com/config/login_verify2?&.src=ym&.intl=us")
oIE.top:=oIE.left:=0, oIE.width:=A_ScreenWidth, oIE.height:=A_ScreenHeight

While, oIE.busy
   Sleep, 500

nodes:=(doc:=oIE.document).querySelector("#inputs")
Loop, 2
   newValue%A_Index%:=doc.createAttribute("value")
 , newValue%A_Index%.nodeValue:=A_Index=1 ? "LOGIN":"PASSWORD"
 , nodes.children[A_Index-1].setAttributeNode(newValue%A_Index%)
oIE.visible:=True, doc.querySelector("#submit").children[0].click(), oIE:=""
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.