Does anybody know how to control a website through VBA? Specifically, I am looking for the VBA code to press the "Next" and "Previous" buttons on a web page. This is relatively easy in some cases as the anchors usually have a "href" to direct the code to a new location. However, some sites seem to use Javascript (of which I have no idea) to control these functions. Thus the code for the anchors might read:
Code:
< a rel="previous" class="previous " id="XXXXXXXXX_previous">« Previous</a>
< a rel="next" class="next " id="XXXXXXXXXXX_next">Next »</a>
Last edited by a moderator: