AutoitN00b Posted February 16, 2010 Posted February 16, 2010 Hey guys My question is how can i make my script click on a special link , for example clicking on all links that contain http://www.autoitscript/forum/ , I've searched a lot but couldn't find any solutions, and thanks.
99ojo Posted February 16, 2010 Posted February 16, 2010 Hi, this is not tested, but should show the way and may works: $oIE = IECreate ("http://www.autoitscript.com") $oLinks = _IELinkGetCollection ($oIE) ;$iNumLinks = @extended For $oLink In $oLinks If StringInStr ($oLink.href, "http://www.autoitscript.com/forum") <> 0 Then _IEAction ($oLink, "Click") EndIf Next ;-)) Stefan
AutoitN00b Posted February 16, 2010 Author Posted February 16, 2010 On 2/16/2010 at 1:31 PM, '99ojo said: Hi, this is not tested, but should show the way and may works: $oIE = IECreate ("http://www.autoitscript.com") $oLinks = _IELinkGetCollection ($oIE) ;$iNumLinks = @extended For $oLink In $oLinks If StringInStr ($oLink.href, "http://www.autoitscript.com/forum") <> 0 Then _IEAction ($oLink, "Click") EndIf Next ;-)) Stefan Thanks a lot
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