Quick Tutorial On Selenium For Impatient Learners
What is a selenium ? Selenium is a open-source testing tool, which can interact with the web content inside the real browser such as firefox, google chrome, internet explorer. Selenium is used for automating web application & in Regression testing. Regression testing means, testing the application after the code fixes, & enhancements, to make sure that existing features were not broken. This saves a lot of time and manual rework. Writing Selenium scripts requires some prior knowledge on java programming. Let's come to the point, How selenium interacts with the content inside a browser ? The answer lies in Webdriver. So what is Webdriver ? Webdriver is a tool in selenium, which can open the real browser and can communicate with it. In java terms, Webdriver is an interface. How to instantiate Webdriver ? You can instantiate Webdriver with FirefoxDriver, ChromeDriver, InternetExplorerDriver. The below examples shows how to d...