com.shaft.gui.browser.BrowserActions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SHAFT_ENGINE Show documentation
Show all versions of SHAFT_ENGINE Show documentation
SHAFT is a unified test automation engine. Powered by best-in-class frameworks, SHAFT provides a
wizard-like syntax to drive your automation efficiently, maximize your ROI, and minimize your learning curve.
Stop reinventing the wheel. Upgrade now!
package com.shaft.gui.browser;
import com.shaft.gui.browser.internal.FluentBrowserActions;
import org.openqa.selenium.WebDriver;
@SuppressWarnings("unused")
public class BrowserActions extends FluentBrowserActions {
public BrowserActions() {
super();
}
public BrowserActions(WebDriver driver) {
super();
}
public static BrowserActions getInstance() {
return new BrowserActions();
}
}