selenium page factory api code example

Example: page factory in selenium

PageFactory is a class in selenium. 
It is used to achieve page factory design pattern, 
it helps to initialize the page objects in the
class using initElements methods. When 
I create an object from the page class,
pagefactory initializes the webelements 
just before interacting this web element.
It means that once you call the element, 
PageFactory class will immediately locate the element
and you will not get a staleElementReferenceException. 

When a page object is created, 
pagefactory driver (because of the constructor)
will be linked to weblements @findby in that page.

 public LoginPage(){
        PageFactory.initElements(Driver.get(), this);
    }

Tags:

Misc Example