Jump to content

RamandeepSingh

Members
  • Posts

    3
  • Joined

  • Last visited

RamandeepSingh's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Well It Worked ..... made a small test script and FF.au3 Worked ... Thanks a lot ....Guys you made my day...... For others who are looking for the small "FIX"....... its ...the line inFF.au3 Local $sFFExe = RegRead($sHKLM & "" & RegRead($sHKLM, "CurrentVersion") & "\Main", "PathToExe") change it to - Local $sFFExe = RegRead($sHKLM & "\" & RegRead($sHKLM, "CurrentVersion") & "\Main", "PathToExe") and Hopefully issue will be fixed..... Happy Coding....
  2. Thanks for the usefull replies guys....... Well yes I have MozRepl installed and I hope its working too ..... I ll look forward to make FF.au3 working and use ControlSend ...too this is the error which I am getting - _FFConnect: OS: WIN_8 WIN32_NT 9200 _FFConnect: AutoIt: 3.3.8.1 _FFConnect: FF.au3: 0.6.0.1b-10 _FFConnect: IP: 127.0.0.1 _FFConnect: Port: 4242 __FFStartProcess ==> General Error: Error reading registry entry for FireFox. HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\*CurrentVersion*\Main\PathToExe Error from RegRead: 1 _FFConnect: Delay: 2ms _FFConnect ==> Timeout: TCPConnect Error: 10061 _FFConnect ==> General Error: Timeout: Can not connect to FireFox/MozRepl on: 127.0.0.1:4242 _FFIsConnected ==> Socket Error: -1 +>10:26:12 AutoIt3.exe ended.rc:0 >Exit code: 0 Time: 61.588 well I am getiing this ..... Is my MozRepl really working ..?? any more suggestions and feedbacks are welcomed .....thanks guyz
  3. hello everyone , Well I am very much new to AutoIT and worked a very few dayz on it for some RnD purposes. I dont want to create a browser object so I am working with Sending keystrokes through the script in mozilla. what I wanted to do is almost done but I am confused that is it the right way.?? I have not used FF.au3 because its not showing intellisence and the methods in it are giving errors . I have attached the Script file ...please have a look and let me know if i can make it more consistent and "AutoIT" styleWise....... thanks #include <GUIConstantsEx.au3> #include <FF.au3> ; Open Run Command and start Mozilla firefox Send("#r") WinWaitActive("Run") Run ( @ProgramFilesDir & '\Mozilla Firefox\firefox.exe' ) Sleep(5000) Send("^l");; select the address bar Send("http://powerschool.nlcphs.org/admin/pw.html") Send("{ENTER}") Sleep(15000) Send("^a") Send("psadmin3;psdeveloper") Send("{TAB}") Send("{ENTER}") Sleep(10000) Send("^l") Send("http://powerschool.nlcphs.org/admin/tech/dde/") Send("{ENTER}") Sleep(6000) Send("Calendar_Day") Send("{ENTER}") Sleep(14000) ;MouseMove(500, 350) ;Send("{TAB}") ;Send("{TAB}") ;Send("{TAB}") ;Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{ENTER}") Sleep(9000) MouseClick("left", 500, 355, 1) Sleep(9000) Send("{TAB}") Send("^a") Send("{BS}") Send("+{TAB}") Send("ID") Send("{ENTER}") Sleep(2000) Send("schoolid") Send("{ENTER}") Sleep(2000) Send("scheduleid") Send("{ENTER}") Sleep(2000) Send("{TAB}") Send("{TAB}") Send("{DOWN}") Send("{TAB}") Send("{TAB}") Send("{DOWN}") Send("{DOWN}") Send("{DOWN}") Send("{TAB}") Send("@;;;@") Send("{TAB}") Send("{SPACE}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{ENTER}") Sleep(5000) Send("!s") Send("{ENTER}")
×
×
  • Create New...