com.sdl.selenium.web.Position Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Testy Show documentation
Show all versions of Testy Show documentation
Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications.
(optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)
The newest version!
package com.sdl.selenium.web;
/**
* Contains all Position:
* see details for all in:
*
* - {@link Position#FIRST}
* - {@link Position#LAST}
*
*/
public enum Position {
/**
* WebLocator cancelBtn = new WebLocator().setPosition(Position.FIRST);
*/
FIRST("first()"),
/**
* WebLocator cancelBtn = new WebLocator().setPosition(Position.LAST);
*/
LAST("last()");
private final String value;
Position(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy