Тема: Переменные при работе с браузером. Переменные как ссылка.
Здравствуйте не подскажите почему так скрипт не работает корректно, точнее просто не работает. (?)
Скрипт:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;Сайт с которого нужно брать URL сервера: https://www.rustmonitor.com/servers
InputBox, linkclip
Loop, 100
{
ie := ComObjCreate("InternetExplorer.Application")
ie.Visible := false
ie.Navigate("%linkclip%")
While ie.readystate <> 4
continue
; ie.document.getElementById("_warningBtn").click()
; ie.document.getElementsByClassName("play-btn")[0].click()
; Sleep, 1500
ie.quit
}
Return
Читал справку, искал на форуме, но что-то не понял в чём проблема
Спасибо!