In this post we will discuss writing some simple code with Selenium C# in Visual Studio . In the last post we referenced our Selenium WebDriver via Nuget package manager in our project. Please read my previous post to get started with selenium referencing in Visual Studio.
Same way we need to add our browser reference.
Once you are done with setup (referencing), you are all set you write a simple code:
//Create the reference for our browser IWebDriver driver = new ChromeDriver(); //Navigate to google page driver.Navigate().GoToUrl("http:www.google.com"); //Find the Search text box UI Element IWebElement element = driver.FindElement(By.Name("q")); //Perform Ops element.SendKeys("executeautomation"); //Close the browser driver.Close();
In Above code we have :