org.framework.maincontroller.CallApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WebAppFramework Show documentation
Show all versions of WebAppFramework Show documentation
Jar to include in your custom framework which contains excel utilities, main controller, call application, random generation and utilities for selenium operations
package org.framework.maincontroller;
import org.framework.maincontroller.MainController;
import org.framework.utils.ApplicationSetUpPropertyFile;
import org.testng.annotations.BeforeMethod;
public class CallApplication extends MainController{
ApplicationSetUpPropertyFile setUp = new ApplicationSetUpPropertyFile();
@BeforeMethod(alwaysRun=true)
public void callApp() {
getDriver().get(setUp.getUrl());
getDriver().manage().window().maximize();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy