List of usage examples for org.openqa.selenium WebElement interface-usage
From source file com.liferay.faces.test.selenium.WebElementMockImpl.java
/** * @author Kyle Stiemann */ public class WebElementMockImpl implements WebElement { // Private Final Data Members
From source file com.lohika.alp.selenium.log.LoggingWebElement.java
public class LoggingWebElement implements WebElement, DescribedElement, Locatable, WrapsElement { protected final Logger logger = Logger.getLogger(getClass()); protected final WebElement element;
From source file com.machinepublishers.jbrowserdriver.Element.java
class Element implements WebElement, JavascriptExecutor, FindsById, FindsByClassName, FindsByLinkText, FindsByName, FindsByCssSelector, FindsByTagName, FindsByXPath, Locatable, WrapsDriver { private final ElementRemote remote; private final JBrowserDriver driver; private final SocketLock lock;
From source file com.machinepublishers.jbrowserdriver.ElementServer.java
class ElementServer extends RemoteObject implements ElementRemote, WebElement, JavascriptExecutor, FindsById, FindsByClassName, FindsByLinkText, FindsByName, FindsByCssSelector, FindsByTagName, FindsByXPath { private static final String IS_VISIBLE; static {
From source file com.mengge.TouchableElement.java
/** * It supposed that mobile elements could be tappable, swipeable, zoomable and so on. * This interface extends {@link WebElement} and describes this behavior. */ public interface TouchableElement<T extends WebElement> extends WebElement, FindsByClassName, FindsByCssSelector, FindsById, FindsByLinkText, FindsByName, FindsByTagName, FindsByXPath {
From source file com.ponysdk.driver.PonyWebElement.java
public class PonyWebElement implements WebElement { private final PonySDKWebDriver ponySDKWebDriver; final Map<String, String> attributes = new ConcurrentHashMap<>(); final Collection<String> styles = new CopyOnWriteArrayList<>();
From source file com.qmetry.qaf.automation.ui.webdriver.QAFWebElement.java
public interface QAFWebElement extends WebElement, FindsByCustomStretegy { // explicit wait void waitForVisible(long... timeout); void waitForNotVisible(long... timeout);
From source file com.redhat.darcy.webdriver.internal.TargetedWebElement.java
public class TargetedWebElement implements WebElement, FindsByClassName, FindsByCssSelector, FindsById, FindsByLinkText, FindsByName, FindsByTagName, FindsByXPath { private final TargetLocator locator; private final WebDriverTarget target; /**
From source file com.selenium.repo.core.BaseElement.java
/**
* Base element for selenium objects, I.e. all objects will extend from this
* class
*
* @author 99xcsro
* @version 1.1
From source file com.seleniumtests.uipage.htmlelements.CachedHtmlElement.java
public class CachedHtmlElement implements WebElement { private Rectangle rectangle; private Point location; private Dimension size; private Element cachedElement;