public final class PageFactory
extends java.lang.Object
Page
instance
initialization.Modifier and Type | Method and Description |
---|---|
static <T extends Page> |
init(org.openqa.selenium.WebDriver driver,
java.lang.Class<?> pageClass)
Major method which initialises page object instance based on WebDriver and page class
provided.
|
public static <T extends Page> T init(org.openqa.selenium.WebDriver driver, java.lang.Class<?> pageClass) throws java.lang.Exception
T
- the class of returning instance.driver
- the WebDriver instance to pass to new page object instance.pageClass
- the page class which instance should be created.java.lang.Exception
- mainly related to missing attributes of the fields to process.