saranda Posted December 22, 2012 Posted December 22, 2012 Hi Guys!! Could you help me? I am trying generate an exe but the code show me an error: Do you know Why? >"C:\Archivos de programa\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Documents and Settings\Sergio Aranda\Mis documentos\AutoItScripts\ILVS_DownloadProcess.au3" C:\Archivos de programa\AutoIt3\Include\IE.au3 (585) : ==> The requested action with this object has failed.: WEnd WEnd^ ERROR >Exit code: 1 Time: 4.800 Code: #include Dim $InitalUrl $InitalUrl="www.xxxxx.com" Local $oIE = _IECreate($InitalUrl) ;_IELoadWait($oIE) Local $oForm = _IEFormGetCollection($oIE, 1) Local $oQuery = _IEFormElementGetCollection($oForm, 3) Local $oQuery2 = _IEFormElementGetCollection($oForm, 4) _IEFormElementSetValue($oQuery, "prabhu123") _IEFormElementSetValue($oQuery2, "doortrim") _IEFormSubmit($oForm)
somdcomputerguy Posted December 22, 2012 Posted December 22, 2012 (edited) Maybe the IELoadWait line needs to be uncommented. Edited December 22, 2012 by somdcomputerguy - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
water Posted December 22, 2012 Posted December 22, 2012 That's an execution time error. Does your script work when executed from SciTE? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
saranda Posted December 22, 2012 Author Posted December 22, 2012 Does your script work when executed from SciTE? No, the script doesn't work. I think that we have a problem when we use two set values: If I remove a set value the error doesn't ocurr, but whe the submit is exceuted i can't log in in the application. Local $oForm = _IEFormGetCollection($oIE, 1) Local $oQuery = _IEFormElementGetCollection($oForm, 3) _IEFormElementSetValue($oQuery, "prabhu123") _IEFormSubmit($oForm) Do you know How to set a value in a textbox with other Option, and after that execute a submit ? Regards
water Posted December 23, 2012 Posted December 23, 2012 Please search the forum for threads with "WEnd" in the title.You will find threads like My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
ileandros Posted December 23, 2012 Posted December 23, 2012 Try adding this at the top of your script _IEErrorHandlerRegister() And check _IEPropertySet to set certains value but i dont think that is your problem. Try adding sleep between your _IEFormElementSetValue($oQuery, "prabhu123") , _IEFormElementSetValue($oQuery2, "doortrim") I feel nothing.It feels great.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now