
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
package org.fest.assertions.fluentlenium;
import org.fest.assertions.fluentlenium.custom.FluentListAssert;
import org.fest.assertions.fluentlenium.custom.FluentWebElementAssert;
import org.fest.assertions.fluentlenium.custom.PageAssert;
import org.fluentlenium.core.FluentPage;
import org.fluentlenium.core.domain.FluentList;
import org.fluentlenium.core.domain.FluentWebElement;
/**
* @deprecated fest-assert has not been maintained since 2013. This module will be removed from FluentLenium in a next future. Use fluentlenium-assertj instead.
*/
@Deprecated
public final class FluentLeniumAssertions {
private FluentLeniumAssertions() {
//only static
}
@Deprecated
/**
* Use AssertJ plugin instead - FestAssert is not active anymore
*
org.fluentlenium
fluentlenium-assertj
*/
public static PageAssert assertThat(FluentPage actual) {
return new PageAssert(actual);
}
@Deprecated
/**
* Use AssertJ plugin instead - FestAssert is not active anymore
*
org.fluentlenium
fluentlenium-assertj
*/ public static FluentWebElementAssert assertThat(FluentWebElement actual) {
return new FluentWebElementAssert(actual);
}
@Deprecated
/**
* Use AssertJ plugin instead - FestAssert is not active anymore
*
org.fluentlenium
fluentlenium-assertj
*/
public static FluentListAssert assertThat(FluentList> actual) {
return new FluentListAssert(actual);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy