use of com.epam.healenium.selenium.pageobject.callback.CallbackPage in project healenium-example-maven by healenium.
the class SeleniumContext method useSettings.
@Override
public HashMap<String, FrameworkPage> useSettings() {
HashMap<String, FrameworkPage> seleniumContext = new HashMap<>();
seleniumContext.put(String.valueOf(PagesType.TEST_ENV), new TestEnvPage(this.driver));
seleniumContext.put(String.valueOf(PagesType.MARKUP), new MarkupPage(this.driver));
seleniumContext.put(String.valueOf(PagesType.MARKUP_FIND_BY), new MainPageWithFindBy(this.driver));
seleniumContext.put(String.valueOf(PagesType.CALLBACK), new CallbackPage(this.driver));
return seleniumContext;
}
Aggregations