Skip to main content

Posts

Showing posts with the label Selenium Webdriver architecture

Top 5 Selenium Webdriver Coding Tips to Improve Quality

SeleniumWebdriver is a powerful automation tool for testing web applications . It’s an open source library bundled with a rich set of features. Using it for testing a website is just like simulating the actions of a real user. All these abilities together make it a perfect tool for automation. But you need proper guidance to get the best out of it. In this blog post, we’ve assembled some of the best and Top 5 Selenium Webdriver coding tips for software testers. Tip-1: Best Method To Create Webdriver Instance. It’s one of the most common Selenium Webdriver coding tips which you can’t avoid to use. 1.1- Use the <Factory> design pattern to create objects based on browser type. 1.2- Extend the below code or use it as is in your projects. public class DriverFactory { private WebDriver driver = null;     public static WebDriver getBrowser(String browserType) {         if (dri...

Selenium WebDriver Architecture - A perfect tutorial to learn Selenium Web Driver

Happy to meet you all through this important topic in Selenium  Automation, Selenium Web Driver architecture is one of the most important topic and the basic one which every selenium tester must be clear about before moving into other topics. What is Selenium Web Driver Web Driver is a tool which is used for automating web application testing, It is basically easy to understand,explore and use Selenium RC. Selenium Web Driver Architecture As I said above it is an important topic which needs to be clear off. I had explored many different pages and authors who are all experts in Selenium to refer a perfect page to learn Selenium Web Driver Architecture for you all. As a result I came across this post which seems to be very clear about this topic and also can be easily understandable by the beginners in testing field. Referring you the link below, Selenium Web Driver Architecture   I hope this post will really gonna be a very useful. Share...