Designing Page Object Model

This lesson introduces the Page Object Model and explains with an example why we prefer this model.

What is POM? #

POM (Page Object Model) is a design pattern that is used in selenium test automation for organizing the helper code for maintainability and reducing code duplication. A page object or a page class is basically a representation of all or some of the actions and ...