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

org.fest.assertions.fluentlenium.FluentLeniumAssertions Maven / Gradle / Ivy

There is a newer version: 0.13.2
Show newest version
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