Hi All,
Writing a code for scrolling down the scroll bar in a VB based application.
This above code works but takes a very long time to scroll down the scroll bar completely, I have to click a button at the bottom of the page after scrolling down Can anybody suggest me something that makes the scrolling down faster.
Writing a code for scrolling down the scroll bar in a VB based application.
Code:
Browser("A").Page("B").Mousemove x,y
For i=1 to scrollheight
browser("A").Page("B").Dblclick x,y
next
This above code works but takes a very long time to scroll down the scroll bar completely, I have to click a button at the bottom of the page after scrolling down Can anybody suggest me something that makes the scrolling down faster.