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

net.thucydides.core.webdriver.stubs.AlertStub Maven / Gradle / Ivy

There is a newer version: 4.1.20
Show newest version
package net.thucydides.core.webdriver.stubs;

import org.openqa.selenium.Alert;
import org.openqa.selenium.security.Credentials;

public class AlertStub implements Alert {
    @Override
    public void dismiss() {
    }

    @Override
    public void accept() {
    }

    @Override
    public String getText() {
        return "";
    }

    @Override
    public void sendKeys(String keysToSend) {
    }

    @Override
    public void authenticateUsing(Credentials credentials) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy