Getting environment ready: Before we can start writing scripts with selenium lets just see how to get the environment ready for this. I hope that you are already having visual studio installed on your system. Instead of just starting basic things with console program, we will be creating an environment which can later be used to build framework and write tests, otherwise we have to setup the environment again later when we start building framework. So, here it goes... Open visual studio Select File->New->Project as shown below: From new project window, Select visual c# then Select Class Library Enter name, select location and click ok as shown below: Now in solution explorer, under your added project, right click on References Select Manage NuGet Packages... option from window as shown below: From NuGet window install Selenium.WebDriver and Selenium.Support packages as shown below: Now, add another project i.e. a u...
Learning selenium with ease