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

aquality.selenium.elements.IElementsModule Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
package aquality.selenium.elements;

import aquality.selenium.elements.interfaces.IElementFactory;

/**
 * Describes implementations of elements services to be registered in DI container.
 */
public interface IElementsModule extends aquality.selenium.core.elements.IElementsModule {
    /**
     * @return class which implements {@link IElementFactory}
     */
    @Override
    default Class getElementFactoryImplementation() {
        return ElementFactory.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy