Page Object Model

customize management

Page Object Model

The page object model we can make non-brittle test code and reduce or eliminate duplicate test code. Beside of that it improves the readability and allows us to create interactive documentation. Last but not least, we can create tests with less keystroke. An implementation of the page object model can be achieved by separating the abstraction of the test object and the test scripts.

Page Object Model Framework has now a days become very popular test automation framework in the industry its easy to test maintenance and reduces the duplication of code.Page Object Model is that if the UI changes for any page, it don’t require us to change any tests, we just need to change only the code within the page objects.Many other tools which are using selenium, are following the page object model.