List of usage examples for org.openqa.selenium WebElement interface-usage
From source file br.ufmg.dcc.saotome.beholder.selenium.WebElementAdapter.java
/**
* <p>The class WebElementAdapter was created to solve the DOM reference lost in
* Selenium when an Ajax call reload an object in HTML page. Webdriver sends a
* StaleElementReferenceException when it idenfifies a WebElement manipulating a
* DOM object that doesn't exit anymore and gives the responsability of identify
* this problem to tester. So, to solve this problem, this class implements the
From source file com.cognifide.qa.bb.webelement.BobcatWebElement.java
/** * Improves WebElement implementation with custom {@link #sendKeys(CharSequence...)} method */ public class BobcatWebElement implements WebElement, Locatable, WrapsElement, HasIdentity { private static final int SEND_KEYS_RETRIES = 10;
From source file com.constellio.sdk.tests.selenium.adapters.base.WebElementAdapter.java
@SuppressWarnings({ "rawtypes", "unchecked" }) public abstract class WebElementAdapter<WE extends WebElement, WD extends WebDriverAdapter<WE>> implements WebElement { private WebElementFinder<WebElement> adaptedElementFinder;
From source file com.dukescript.impl.selenium.DomNodeWebElement.java
/** * * @author antonepple */ final class DomNodeWebElement implements WebElement, Serializable, FindsByCssSelector, FindsByClassName, FindsById, FindsByXPath, FindsByLinkText, FindsByName, FindsByTagName {
From source file com.epam.jdi.uitests.mobile.appium.driver.WebElementAvatar.java
/** * Created by Roman_Iovlev on 6/10/2015. */ public class WebElementAvatar implements JElement, WebElement { private WebElement element;
From source file com.epam.jdi.uitests.web.selenium.driver.WebElementAvatar.java
/** * Created by Roman_Iovlev on 6/10/2015. */ public class WebElementAvatar implements JElement, WebElement { private WebElement element;
From source file com.galenframework.components.mocks.driver.MockedDriverElement.java
public class MockedDriverElement implements WebElement { private final MockedPageItem item; public MockedDriverElement(MockedPageItem item) { this.item = item; }
From source file com.ggasoftware.jdiuitest.web.selenium.driver.WebElementAvatar.java
/** * Created by Roman_Iovlev on 6/10/2015. */ public class WebElementAvatar implements JElement, WebElement { private WebElement element;
From source file com.github.licanhua.test.framework.base.CustomElement.java
/** * @author Canhua Li */ public abstract class CustomElement extends AbstractElement implements WebElement { public void click() {
From source file com.liferay.cucumber.selenium.RetryWebElementImpl.java
/** * @author Brian Wing Shun Chan * @author Michael Hashimoto */ public class RetryWebElementImpl extends RemoteWebElement implements Locatable, WebElement, WrapsDriver {