Eyal Posted June 18, 2008 Posted June 18, 2008 Hi, I have an application that we launch via IE. But AutoIT is not recognise any of the objects in the winodw. Any idea? How can I search for a string and then click on it? Thanks,
LongBowNZ Posted June 18, 2008 Posted June 18, 2008 If the string is a link this might work #include <IE.au3> $oIE = _IEAttach("x", "Title") ; Replace "x" with IEs title If @error = $_IEStatus_NoMatch Then Exit ; Exits if it can't find the IE window _IELinkClickByText ($oIE, "x") ; Replace "x" with the string to click on
Eyal Posted June 19, 2008 Author Posted June 19, 2008 If the string is a link this might work #include <IE.au3> $oIE = _IEAttach("x", "Title") ; Replace "x" with IEs title If @error = $_IEStatus_NoMatch Then Exit ; Exits if it can't find the IE window _IELinkClickByText ($oIE, "x") ; Replace "x" with the string to click on Look like it select it, but not clicking it and the mouse remain in another place on the browser. Any advise? thanks Eyal
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