Skip to content
Related Articles
Open in App
Not now

Related Articles

Difference between POM and PageFactory

Improve Article
Save Article
Like Article
  • Last Updated : 04 Nov, 2020
Improve Article
Save Article
Like Article

1. Page Object Model (POM) :
The object of Page is an OOPs class that acts as an interface for the web page of your application under test and it is actually a type of design pattern that is typically used in Selenium for Automation of Test Cases. Page class in this POM incorporates web factors and techniques to engage with web elements.

2. PageFactory :
Selenium WebDriver provides a class called PageFactory which helps to assist Page Object of Design patterns. In this, developers use an annotation ‘@FindBy’. There is a method called an ‘initElements’ method, which is used for initializing the elements of the web.



Difference between POM and PageFactory :

S.No.POMPageFactory
1.It is an approach for Design patterns.It is a class that is provided by Selenium Webdriver.
2.It is not an optimal method to process tasks.It is an optimal method to process tasks.
3.It helps in separating page objects and scripts.It is a technique to implement POM.
4.‘By’ annotation is used to define page objects.It uses annotation ‘FindBy’ to describe page objects.
5.It does not handle exceptions efficiently.It efficiently handles the exceptions.
6.It requires the initialization of every object.It does not require the initialization of every object.
7.There is cache storage for performing tasks.There is no need for cache storage.

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!