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

info.novatec.testit.webtester.internal.OffersPageCreation Maven / Gradle / Ivy

package info.novatec.testit.webtester.internal;

import info.novatec.testit.webtester.internal.annotations.CreatesPage;
import info.novatec.testit.webtester.pages.Page;


public interface OffersPageCreation {

    /**
     * Creates an instance of the given {@link Page page} class.
     *
     * @param  the type of the page object to return
     * @param pageClass the page object class to be initialized
     * @return an initialize page object of the given class
     * @see Page
     * @since 2.0
     */
    @CreatesPage
     T create(Class pageClass);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy