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