aquality.selenium.elements.IElementsModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aquality-selenium Show documentation
Show all versions of aquality-selenium Show documentation
Library around Selenium WebDriver
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 extends IElementFactory> getElementFactoryImplementation() {
return ElementFactory.class;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy