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

org.jspringbot.keyword.selenium.action.WaitUntilElementVisibleAction Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
package org.jspringbot.keyword.selenium.action;

import org.jspringbot.keyword.selenium.SeleniumHelper;
import org.openqa.selenium.interactions.Action;

public class WaitUntilElementVisibleAction implements Action {

    private SeleniumHelper helper;

    private String locator;

    public WaitUntilElementVisibleAction(SeleniumHelper helper, String locator) {
        this.helper = helper;
        this.locator = locator;
    }

    @Override
    public void perform() {
        helper.waitTillElementVisible(locator);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy