saranda Posted December 20, 2012 Posted December 20, 2012 Hi guys,I'm really new with Autoit, and I'm traying to work with a combox for select a data, but the my problem is that I can't to read the Form. I try to use the follow code for identify the form name:#include <IE.au3>$oIE = _IECreate("https://www.XXXXX.com")Local $oForms = _IEFormGetCollection($oIE)MsgBox(0, "Forms Info", "There are " & @extended & " forms on this page")For $oForm In $oFormsMsgBox(0, "Form Info", $oForm.name)NextWhy the form is not read? can i read forms and controls form a https site? could you help me with another option?
Exit Posted December 20, 2012 Posted December 20, 2012 If you would provide the real URL, then we might be able to help you. App: Au3toCmd UDF: _SingleScript()
jdelaney Posted December 20, 2012 Posted December 20, 2012 (edited) Are there actually any <form> nodes on the page? Try adding a _ieloadwait after the _iecreate line. At least turn the msgbox's into consolewrites, and post that...need some additional data Edited December 20, 2012 by jdelaney IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
saranda Posted December 20, 2012 Author Posted December 20, 2012 Excellent!!!! I added _ieloadwait and my script is working. Thank you, I'm going to continue learning about Autoit. :-)
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