Jump to content

mmahima

Active Members
  • Posts

    32
  • Joined

  • Last visited

mmahima's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Other than Mozrepl, do we need to any other requirements for working on "FF.au3" functions
  2. _FFConnect: OS: WIN_XP WIN32_NT 2600 Service Pack 3 _FFConnect: AutoIt: 3.3.6.0 _FFConnect: FF.au3: 0.6.0.1b-3 _FFConnect: IP: 127.0.0.1 _FFConnect: Port: 4242 _FFConnect: Delay: 2ms _FFConnect: Socket: 1640 __FFWaitForRepl ==> Timeout: 10031ms > 10000ms $iTimeOut I am getting Timeout message in the console, when i use the functions, could you please help
  3. I have installed the AddOn & activated the MozRepl using Tools > MozRepl > Activate on StartUp Do i need to do, any other thing other this. I am still unable to work on this functions. I tried with Firefox 3.3.6 and 2.0.0.1 Could any one help me regarding this.
  4. Yes, I have started my MozReplIt is giving me the timeout error. Thanks in Advance
  5. I am unable to use this functions, in my machine I have firefox in my machine, and i have installed the plugin "MOZREPL" for the firefox Can you please let me know the problem, why i am not able to use the functions i am getting this message in the control panel __FFWaitForRepl ==> Timeout: 10015ms > 10000ms $iTimeOut Thanks in Advance
  6. Now i have installed it, It is still giving the following __FFStartProcess: ""C:\Program Files\Mozilla Firefox\firefox.exe" -new-window "about:blank" -repl 4242 _FFConnect: OS: WIN_XP WIN32_NT 2600 Service Pack 3 _FFConnect: AutoIt: 3.3.6.0 _FFConnect: FF.au3: 0.6.0.1b-3 _FFConnect: IP: 127.0.0.1 _FFConnect: Port: 4242 _FFConnect: Delay: 2ms _FFConnect: Socket: 1644 _FFLoadWait: . __FFWaitForRepl ==> Timeout: 10031ms > 10000ms $iTimeOut __FFWaitForRepl ==> Timeout: 30031ms > 30000ms $iTimeOut . __FFWaitForRepl ==> Timeout: 30030ms > 30000ms $iTimeOut . __FFWaitForRepl ==> Timeout: 30030ms > 30000ms $iTimeOut when i execute the below code #include <FF.au3> If _FFIsConnected() Then _FFOpenURL("http://www.ip-adress.com/") ; open a page Sleep(3000) _FFDisConnect() ; close the connection Else MsgBox(64, "", "Can't connect to FireFox!") EndIf Can I increase the Time delay, as the script is showing a message "TimeOut:......."
  7. I didn't install any plug-in, can you share the path of plug-in, so that i can install it
  8. http://www.autoitscript.com/forum/index.php?showtopic=95595 You can, use the above functions
  9. Hi all, I try to use the functions, which are given in the below URL, for working on autoit and firefox. http://english.documentation.ff-au3.thorsten-willert.de/ Autoit is displaying the following error messages __FFSend: try{FFau3 != null?1:0}catch(e){'_FFCmd_Err';}; __FFWaitForRepl ==> Timeout: 12ms > 10000ms $iTimeOut __FFRecv: __FFWaitForRepl ==> Timeout: 12ms > 30000ms $iTimeOut _FFIsConnected ==> Socket Error: 1640 Could any one help me, in clicking on a link in firefox application. Thanks in Advance.
  10. The following script opens a popup window #include<IE.au3> $oIE = _IECreate("...searchrequests.do") _IELoadWait($oIE,1000) $tags = $oIE.document.all.tags("input") for $tag in $tags iF(StringInStr($tag.type,"submit")>0)Then $tag.click msgbox(0,"","Inside the for loop") ExitLoop EndIf Next I am not able to click on the popup window, which is popped nor message box is getting opened i.e., when i click on $tag.click an alert dialog box is opened.
  11. I used VBsedit and AutoIt. Vbsedit is retrieving correct values, where as AutoIt is retrieving wrong values The following is the VBsedit code, which is retrieving correct values Set sqlCon = CreateObject("ADODB.Connection") Set objRecordSet = CreateObject("ADODB.Recordset") sqlCon.Open("Provider='IBMDA400';Data Source='10.0.1.25';User Id='r2k2gui4';password='r2k2gui4';") 'Set oRs = sqlCon.Execute ("SELECT * FROM CCDATA.RCMAST WHERE MSACT# = '8216'") 'MsgBox(oRs.Fields("MSFRST").value) 'MsgBox(oRs.Fields("MSDOWN").value) 'Set oRs = sqlCon.Execute ("SELECT * from CCDATA.CCPHONE WHERE PHACT# ='8216'") 'MsgBox(oRs.Fields("PHPHN#").value) 'oRs.MoveNext 'MsgBox(oRs.Fields("PHPHN#").value) 'Set oRs = sqlCon.Execute ("SELECT MSACT#, MSFNM, MSIDESC, MSOACT# FROM CCDATA.RCMAST WHERE msssn = '587533937'") 'MsgBox(oRs.Fields("MSACT#").value) Set oRs = sqlCon.Execute ("SELECT MSACT#, MSFNM, MSIDESC, MSOACT# FROM CCDATA.RCMAST WHERE MSACT# = '960605650'") MsgBox(oRs.Fields("MSACT#").value) whereas the following is AutoIt code that is retrieving wrong values $sqlCon = ObjCreate('ADODB.Connection') $objRecordSet = ObjCreate("ADODB.Recordset") $sqlCon.Open("Provider='IBMDA400';Data Source='10.0.1.25';User Id='r2k2gui4';password='r2k2gui4';") ;~ $oRs = $sqlCon.Execute ("SELECT * FROM CCDATA.RCMAST WHERE MSACT# = '8216'") ;~ MsgBox(0,"",$oRs.Fields("MSFRST").value) ;Displaying wrong date values 20081100 in place of 20081101 ;~ MsgBox(0,"",$oRs.Fields("MSDOWN").value) ;~ $oRs = $sqlCon.Execute ("SELECT * from CCDATA.CCPHONE WHERE PHACT# ='8216'") ;~ MsgBox(0,"",$oRs.Fields("PHPHN#").value) ;~ $oRs.MoveNext ;~ MsgBox(0,"",$oRs.Fields("PHPHN#").value) ;Displaying wrong phone number ;~ $oRs = $sqlCon.Execute ("SELECT MSACT#, MSFNM, MSIDESC, MSOACT# FROM CCDATA.RCMAST WHERE msssn = '587533937'") ;~ MsgBox(0,"",$oRs.Fields("MSACT#").value) ;Displaying 960605632 which is wrong value $oRs = $sqlCon.Execute ("SELECT MSACT#, MSFNM, MSIDESC, MSOACT# FROM CCDATA.RCMAST WHERE MSACT# = '960605650'") MsgBox(0,"",$oRs.Fields("MSACT#").value) ;Displaying 960605632 which is wrong value $oRs = 0 $sqlCon = 0 $objRecordSet = 0
  12. it is returning a wrong number other than the one which expected
  13. I am getting some unknown results, the expected should be 8217
  14. When i try to execute the following statements in autoit, it is displaying wrong results, could any one help. $sqlCon = objCreate("ADODB.Connection") $objRecordSet = ObjCreate("ADODB.RecordSet") $sqlCon.Open("Provider='IBMDA400';Data Source = '10.0.1.25';User Id='USERNAME'; password='Password';") $oRs = $sqlCon.Execute("select * FROM ccdata.rcmast where MSACT# = '8217'") MSGBOX(0,"",$oRs.Fields("MSACT#").value)
×
×
  • Create New...