com.slickqa.webdriver.In 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.By;
/**
*
* @author jcorbett
*/
public class In
{
public static WebContainer Frame(String frameId)
{
return new FrameContainer(frameId);
}
public static WebContainer Frame(PageElement element)
{
return new FrameContainer(element);
}
public static WebContainer ParentElement(PageElement parent)
{
return new ParentElementContainer(parent);
}
public static WebContainer ParentElement(By finder) {
return new ParentElementContainer(finder);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy