
org.fest.assertions.fluentlenium.FluentLeniumAssertions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluentlenium-festassert Show documentation
Show all versions of fluentlenium-festassert Show documentation
Fest Assert Extension for FluentLenium
The newest version!
package org.fest.assertions.fluentlenium;
import fr.javafreelance.fluentlenium.core.FluentPage;
import fr.javafreelance.fluentlenium.core.domain.FluentWebElement;
import org.fest.assertions.fluentlenium.custom.FluentWebElementAssert;
import org.fest.assertions.fluentlenium.custom.PageAssert;
public final class FluentLeniumAssertions {
private FluentLeniumAssertions() {
//only static
}
public static PageAssert assertThat(FluentPage actual) {
return new PageAssert(actual);
}
public static FluentWebElementAssert assertThat(FluentWebElement actual) {
return new FluentWebElementAssert(actual);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy