All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.yandex.qatools.actions.beans.AbstractNavigateBackAction Maven / Gradle / Ivy

The newest version!
package ru.yandex.qatools.actions.beans;

import org.openqa.selenium.WebDriver;

/**
 * @author Alexander Tolmachev [email protected]
 *         Date: 06.09.12
 */
public abstract class AbstractNavigateBackAction extends WebDriverAction {
    @Override
    public void perform(WebDriver webDriver) {
        webDriver.navigate().back();
    }

    @Override
    public String toString() {
        return "Navigate back";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy