org.fluentlenium.assertj.custom.AlertStateAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluentlenium-assertj Show documentation
Show all versions of fluentlenium-assertj Show documentation
AssertJ Extension for FluentLenium
package org.fluentlenium.assertj.custom;
public interface AlertStateAssert {
/**
* Check that the alert box contains the given text
*
* @param text text to search for
* @return self
*/
AlertStateAssert hasText(String text);
/**
* Check that an alert box is present
*
* @return self
*/
AlertStateAssert isPresent();
}