Hi,
i had the same error with the FormSubmit function...which calls a _IELoadWait,
i tryed the work around
in removing the Do...until (func: IELoadWait)
where it crashes
C:\Program Files\AutoIt3\beta\Include\IE.au3 (709) : ==> The requested action with this object has failed.:
Until ($oTemp.document.readyState = "complete" Or $oTemp.document.readyState = 4)
Until ($oTemp.document.readyState ^ ERROR
it worked not to bad...
after i saa the work around here in the forum
_IEFormSubmit($o_form, 0)
_IELoadWait($oIE)
but it failed often and went forward to a parsing step in my programm even if the site wasen't loaded.
im now at the Point where i implementet again the IELoadwait without the Do until where it crashed and
added a Sleep(2000) ...
_IEFormSubmit($o_form)
_IELoadWait($oIE)
Sleep(2000)
this works normally but it makes access really slow, is there a way to fix the IELoadWait to get optimal performance of waiting on the loaded frameset...?
Thank you for ur Help...sry bad english ...