Hello,
Can someone guide me on how I can navigate to the next page using WATIN ?
I need to automate clicking on the page numbers on the bottom from 1,2, until the end...
Thanks.
Hello,
Can someone guide me on how I can navigate to the next page using WATIN ?
I need to automate clicking on the page numbers on the bottom from 1,2, until the end...
Thanks.
Something along these lines should get you started:
var ie = new IE();
ie.Link(Find.ByText("1")).Click();
While it's really basic, it should do the job. You could throw that in a simple loop and be done with it.
Good luck!