I am using Selenium Webdriver using C# for Automation Testing.
I will try to explain my problem through an example.
I search for a particular term in some search sites say www.google.com and get several pages of results.
Now, i am trying to locate the presence of a particular link/Text in Search results by iterating through all the search results pages.
Hope someone can help me through this.
Thanks in advance.
EDIT
Below is some of my code:
static void Main(string[] args) {
IWebDriver d1 = new FirefoxDriver();
d1.Navigate().GoToUrl("cocodle.com/";);
IWebElement e1 = d1.FindElement(By.Name("q"));
e1.SendKeys("Selenium");
IWebElement e2 = d1.FindElement(By.Name("sa")); e2.Submit();
}