开发者

Using WatiN to crawl to next page on google

开发者 https://www.devze.com 2023-01-09 20:38 出处:网络
How can I navigate to the next page using WatiN ? I need to automate clicking on开发者_Go百科 the page numbers on the bottom from 1, 2, until the end...Something along these lines should get you star

How can I navigate to the next page using WatiN ?

I need to automate clicking on开发者_Go百科 the page numbers on the bottom from 1, 2, until the end...


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!

0

精彩评论

暂无评论...
验证码 换一张
取 消