AutoIt send command in IE in Kiosk mode -


i'm new coding (like new) managed wanted autoit. means: launch ie automatically on web page in kiosk mode. far good.

but before not in kiosk mode input sent worked can't find problem why not work more.

shellexecutewait("c:\program files\internet explorer\iexplore.exe", "-k http://website.com", "")  winwaitactive("website.com  login - internet explorer","")  send("login{tab}password{enter}") 

the website launched, i'm directly in login box, nothing typed in it. ideas?

like @steve said in comments, can try use controlfocus when window shown, send credentials.

shellexecutewait("c:\program files\internet explorer\iexplore.exe", "-k http://website.com", "")  ; store returned window handle use in controlfocus call local $hwnd = winwaitactive("website.com  login - internet explorer","")  controlfocus($hwnd, "", "edit1")  send("login{tab}password{enter}") 

Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

serialization - Convert Any type in scala to Array[Byte] and back -

SonarQube Plugin for Jenkins does not find SonarQube Scanner executable -