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

net.serenitybdd.core.pages.WidgetObject Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package net.serenitybdd.core.pages;

import net.serenitybdd.core.annotations.ImplementedBy;
import org.openqa.selenium.support.FindBy;

/**
 * Represents a page fragment which occurs across pages or multiple times in a single
 * page. Instance members with {@link FindBy @FindBy} style annotations are located
 * within this context.
 * 
 * @author Joe Nasca
 */
@ImplementedBy(WidgetObjectImpl.class)
public interface WidgetObject extends WebElementFacade {

	/**
	 * Get the page containing this widget.
	 * @return the page containing this widget
	 */
	public PageObject getPage();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy