com.slickqa.webdriver.WebContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slick-webdriver-java Show documentation
Show all versions of slick-webdriver-java Show documentation
This is a wrapper and utilities for using webdriver / selenium in Java.
package com.slickqa.webdriver;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import java.util.List;
/**
*
* @author jcorbett
*/
public interface WebContainer
{
public WebElement findElement(WebDriver browser, PageElement item) throws NoSuchElementException;
public List findElements(WebDriver browser, PageElement item) throws NoSuchElementException;
public String getFindByDescription();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy