Jump to content

Kimbo

Members
  • Posts

    4
  • Joined

  • Last visited

Kimbo's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thanks for your reply, unfortunately I am remote to this site and cannot check for the source behind this page, I think its class type is Internet Explorer_Server1. Is it possible to get focus on the page by using the text in the header, I have tried a few things but have not had much luck, the problem being I have to keep sending the scripts to the person who is using it on their internal network, so it is a bit of trial and error cause I cant test it. Many Thanks
  2. Hi, I am trying to automate a login to a login page as is shown in the picture, I have the following script but when it is run all that happens is the login page is displayed. Script: #include <IE.au3> $g_szVersion = "AutoLogin Script 1.1" If WinExists($g_szVersion) Then Exit ; It's already running AutoItWinSetTitle($g_szVersion) ; Create a browser window and navigate to login page $oIE = _IECreate ("http://10.61.5.200") Sleep(2000) ; Send Keystrokes Send("{TAB}") Send("User") Send("{TAB}") Send("Password") Send("{TAB}") Send("{ENTER}") ; Finished I have tried to just emulate the keystrokes that would be made at the screen but nothing is happening, I have attached a picture of the screen as it appears. The login screen is a CGI script I think. Any help would be appreciated
  3. Many thanks to all, this has been a huge help.
  4. Is it possible to automate the login process to a web page, that is where a web page comes up with a login box requesting a user name and a password and a ok or submit button, can a script be written to pass in the required username and password then click on the ok or submit button of the page, this would be carried out on an internal network where the use logs into a specific page on the internal intranet. Also is it possible to write a script to do the same thing with a program that is made to run at startup of a computer, once the computer starts is it possible to pass in a username and password to log into a program, for example where the computer is not attended and requires to be logged into a program again on a reboot. Any assistance would be appreciated, and pointers to example code which may help me would be very much appreciated.
×
×
  • Create New...