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

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

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