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

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

Go to download

Library with core functions simplifying work with Selenium-controlled applications.

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

import aquality.selenium.core.elements.interfaces.IElementFactory;
import aquality.selenium.core.elements.interfaces.IElementFinder;

/**
 * Describes implementations of elements services to be registered in DI container.
 *
 * @author lenovo
 * @version $Id: $Id
 */
public interface IElementsModule {
    /**
     * 

getElementFinderImplementation.

* * @return class which implements {@link aquality.selenium.core.elements.interfaces.IElementFinder} */ default Class getElementFinderImplementation() { return ElementFinder.class; } /** *

getElementFactoryImplementation.

* * @return class which implements {@link aquality.selenium.core.elements.interfaces.IElementFactory} */ default Class getElementFactoryImplementation() { return ElementFactory.class; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy