allSystemsGo Posted March 27, 2013 Posted March 27, 2013 (edited) Anyone care to let me in on what I am missing here? #include <IE.au3> Local $oIE = _IECreate('http://www.doitbest.com/StoreLocator.dib') _IEImgClick($oIE,"searchforstore.gif","src") _IELoadWait($oIE) or #include <IE.au3> Local $oIE = _IECreate('http://www.doitbest.com/StoreLocator.dib') _IEImgClick($oIE,"Search for Store","alt") _IELoadWait($oIE) Neither seem to work, Returns the following in the console: --> IE.au3 V2.4-0 Warning from function _IEImgClick, $_IEStatus_NoMatch Edited March 27, 2013 by zsutton92
Bert Posted March 27, 2013 Posted March 27, 2013 _IEFormElementGetCollection The Vollatran project My blog: http://www.vollysinterestingshit.com/
allSystemsGo Posted March 27, 2013 Author Posted March 27, 2013 I should be more patient. This works... Local $oIE = _IECreate("http://www.doitbest.com/StoreLocator.dib") Local $oSubmit = _IEGetObjByName($oIE, "_ctl2:btnSearch") _IEAction($oSubmit, "click") _IELoadWait($oIE)
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