info.kapable.sondes.scenarios.action.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AutomationScenarioAPI Show documentation
Show all versions of AutomationScenarioAPI Show documentation
Java API to execute scenario from an XML command file
The newest version!
package info.kapable.sondes.scenarios.action;
import info.kapable.sondes.scenarios.ScenarioException;
import org.openqa.selenium.WebDriver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public abstract class Action {
private final Logger logger = LoggerFactory.getLogger(ScenarioException.class);
protected void logEvent(String type, String trace) {
this.logger.info(type + " : " + trace);
}
public abstract void executeAction(WebDriver driver) throws ScenarioException ;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy