
net.sf.testium.executor.webdriver.commands.Back Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-plugin Show documentation
Show all versions of selenium-plugin Show documentation
Selenium Plugin for the Testium Executor
The newest version!
/**
*
*/
package net.sf.testium.executor.webdriver.commands;
import java.util.ArrayList;
import net.sf.testium.executor.general.SpecifiedParameter;
import net.sf.testium.executor.webdriver.WebInterface;
import org.openqa.selenium.WebDriver;
import org.testtoolinterfaces.testresult.TestStepResult;
import org.testtoolinterfaces.testsuite.ParameterArrayList;
import org.testtoolinterfaces.utils.RunTimeData;
/**
* Executes the Selenium 2.0 back command
*
* @author Arjan Kranenburg
*
*/
public class Back extends GenericSeleniumCommandExecutor
{
private static final String COMMAND = "back";
/**
*
*/
public Back( WebInterface aWebInterface )
{
super( COMMAND, aWebInterface, new ArrayList() );
}
@Override
protected void doExecute( RunTimeData aVariables,
ParameterArrayList parameters,
TestStepResult result )
throws Exception {
WebDriver webDriver = this.getDriver();
webDriver.navigate().back();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy