ctl Posted July 31, 2013 Share Posted July 31, 2013 Hello again guys, how could i scroll down after i open a page with internet explorer ? I have to click some button in the bottom of a page, and i dont know what is the command for my mouse to scroll down the page. Link to comment Share on other sites More sharing options...
Bert Posted July 31, 2013 Share Posted July 31, 2013 MouseWheel ctl 1 The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
ctl Posted July 31, 2013 Author Share Posted July 31, 2013 Thanks! Link to comment Share on other sites More sharing options...
Bert Posted July 31, 2013 Share Posted July 31, 2013 You're welcome. I used this when I needed to do system testing for a web based app in IE. Worked like a charm. The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
ctl Posted July 31, 2013 Author Share Posted July 31, 2013 Works ok for me too, so when i have a big website i have to repete the MouseWheel(down) until i get to the bottom ? Link to comment Share on other sites More sharing options...
Bert Posted July 31, 2013 Share Posted July 31, 2013 you can just set the number of clicks to do what you need. Also, you could look at IE.AU3 (In the help file) and you may be able to directly hook into the controls on the webpage. That would make your script more stable. The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
Edano Posted July 31, 2013 Share Posted July 31, 2013 (edited) $oIE = _IE_Example("form") $oSubmit = _IEGetObjByName($oIE, "submitExample") ;Local $hwnd = _IEPropertyGet($oIE, "hwnd") _IEAction($oSubmit, "focus") Edited July 31, 2013 by Edano [color=rgb(255,0,0);][font="'comic sans ms', cursive;"]FukuLeaks[/color][/font] Link to comment Share on other sites More sharing options...
Shrapnel Posted July 31, 2013 Share Posted July 31, 2013 (edited) You can also use .scrollIntoView Local $o_footer = _IEGetObjById($o_IE, "Footer_lblFooter") ; get footer id $o_footer.scrollIntoView() ; Scroll to bottom of screen Edited July 31, 2013 by Shrapnel Link to comment Share on other sites More sharing options...
JohnOne Posted July 31, 2013 Share Posted July 31, 2013 (edited) If you do use MouseWheel, you can change how far it will scroll it by control panel, mouse, wheel and vertical scrolling. Don't know if you can set that programmatically though. Edited July 31, 2013 by JohnOne AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
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