com.nordstrom.automation.selenium.model.RobustWebElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-foundation Show documentation
Show all versions of selenium-foundation Show documentation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
package com.nordstrom.automation.selenium.model;
import org.openqa.selenium.WebElement;
/**
* This interface declares the public API for "robust" web elements, adding the reference-refreshing methods of the
* {@link ReferenceFetcher} interface to the standard {@link WebElement} interface.
*/
public interface RobustWebElement extends WebElement, ReferenceFetcher {
}