Search the Community
Showing results for tags '_IELoadWait'.
-
Hi I have been having problems with scripts apparently hanging for long periods when navigating between web pages and was considering adjusting the _IELoadWaitTimeout value. However, the documentation says: "The initial timeout value is 30000 ms (5 minutes)." But surely 30000ms is 30 x 1000ms = ie 30 seconds? Which is it please? Or am I missing something? Thanks
-
Hi All, I've tried to create a script to browse to a web page in IE, but it only works for some sites, I've tried to simplify the script as much as possible, hoping you can point me in the right direction - thanks. This one going to Google does work: #include <IE.au3> $oIE = _IECreate("https://www.google.com.au/", 0, 1, 1) _IELoadWait($oIE) _IEQuit($oIE) But this one going to OneDrive opens the IE page, but fails immediately returning the errors, and the IE window is not closed: --> IE.au3 T3.0-2 Error from function _IELoadWait, $_IESTATUS_ClientDisconnected (-2147023174, Browser has been deleted prior to operation.) --> IE.au3 T3.0-2 Error from function _IELoadWait, $_IESTATUS_InvalidObjectType () --> IE.au3 T3.0-2 Error from function _IEQuit, $_IESTATUS_InvalidObjectType #include <IE.au3> $oIE = _IECreate("https://abccorp-my.sharepoint.com/", 0, 1, 1) _IELoadWait($oIE) _IEQuit($oIE) Even if I put a sleep timer in for 10 seconds after the _IECreate it still doesn't work Thanks all!
-
I have kept below line to wait for IE to load the site completely and continue. _IELoadWait($oIE) But, the code is continuing without waiting for it and I my execution is failing as the elements are not loaded completely. Any suggestions for alternate code to wait for the browser to load completely?
- 3 replies
-
- _ieloadwait
- ie
-
(and 1 more)
Tagged with:
-
Hello, I have this simple script which automates google translate. #include <IE.au3> $oIE = _IECreate("http://translate.google.com/#en|fr|") $oForm = _IEFormGetObjByName($oIE, "text_form") $oText = _IEFormElementGetObjByName($oForm, "text") _IEFormElementSetValue($oText, "Hello") Sleep(3000) $id = _IEGetObjById($oIE, "result_box") $oText1 = _IEPropertyGet($id, "innertext") MsgBox(0,"Translate",$oText1) What i want to do it to remove the Sleep(3000) that there is in the script. But removing it the script doesnt works because the message box appears before geting the value of the innertext.... Is there a way to remove or replace the sleep time??? I tried _IELoadWait() but it doesnt work. Any tips?? Edit: Testing for the $oText1.value just add some more pointless lines to the script and leeds at adding sleep seconds until value is true...
-
When i try to wait loading of __IENavigate, that never wait Reproducer: #include <IE.au3> $oIE = _IECreate ('autoitscript.com') _IELoadWait($oIE) For $i=0 To 10 Step +1 __IENavigate($oIE, 'autoitscript.com', 1, 0x800) _IELoadWait($oIE) Next Sleep(5000) _IEQuit($oIE) Also i try to use $f_wait, 3th Parrameter of __IENavigate, but that also not work __IENavigate($o_object, $s_Url, $f_wait, $i_flags) Thanks for any tips