aquality.selenium.locators.IRelativeByWebElement 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.locators;
import org.openqa.selenium.WebElement;
public interface IRelativeByWebElement {
RelativeBy above(WebElement element);
RelativeBy below(WebElement element);
RelativeBy toLeftOf(WebElement element);
RelativeBy toRightOf(WebElement element);
RelativeBy near(WebElement element);
RelativeBy near(WebElement element, int atMostDistanceInPixels);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy