Category Selenium

Keyword Driven Framework in Selenium

Keyword driven framework in Selenium

Keyword driven automation testing framework is the most popular testing framework that is easy to design in selenium. It is a technique in which we represent the test scenario in terms of keywords and corresponding parameters. A keyword-driven framework in…

Selenium Framework: Data Driven Framework

Data driven framework in Selenium

Selenium framework is a code structure that is used to make code maintenance simpler and readability better. It helps in dividing the entire code into smaller parts of the code in a systematic way, which tests a particular functionality. Without…

Page Factory in Selenium | @FindBy in Selenium

FindBy annotation in Page factory

In the previous tutorial, you have learned the first way to design and build the Selenium page object model design pattern using the normal approach for application under test (AUT). The page object pattern brings the following advantages for your…

Page Object Model (POM) in Selenium

Page object model in Selenium

Page object model (POM) in selenium is an object design pattern that is used to create an object repository for web UI elements. It is one of the most widely used design patterns by the community of Selenium WebDriver across…

How to Right Click on WebElement in Selenium

Right-click action in Selenium | In the previous tutorial, we have successfully performed double-click action on a WebElement and current location on the web page. Now, moving ahead to the next action called right-click or context-click. Basically, a context menu…