All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.slickqa.webdriver.In Maven / Gradle / Ivy

There is a newer version: 1.0.1-37
Show newest version
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