pom

How to implement the Page object model using Cypress?

Reading Time: 3 minutes Let’s discuss, how to implement the page object model using Cypress? To implement the page object model using Cypress we have to understand POM. Page Object Model is a design pattern where the page objects are separated from the automation test scripts. Page object model has been used. The code will be made reusable. Hence, Cypress is having the feature to enable POM. Therefore, In POM we Continue Reading

Understanding POM

Reading Time: 4 minutes What is POM? The core element of any maven project. Maven Project consist of at least one configuration file called pom.xml. Which stands for the abbreviation Project Object Model. The pom.xml will always be located in the root directory of any maven project. Inside the pom.xml contains all the necessary information about the configuration details. dependency included and plug-ins included in the project. Why do Continue Reading