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

org.fluentlenium.core.alert.Alert Maven / Gradle / Ivy

package org.fluentlenium.core.alert;

/**
 * Extension of Selenium's own Alert interface to manage browser alert.
 */
public interface Alert extends org.openqa.selenium.Alert {
    /**
     * Send input to the alert prompt.
     *
     * @param text test to send to the prompt
     */
    void prompt(String text);

    /**
     * Check if this alert is present.
     *
     * @return true if alert is present, false otherwise
     */
    boolean present();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy