io.github.kgress.scaffold.webelements.DivWebElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
Core components for Scaffold
package io.github.kgress.scaffold.webelements;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
/**
* A strongly typed representation of a Div {@link WebElement}.
*
* This can usually stand in for any sort of displayable element that is otherwise difficult to classify, such as a span,
* a paragraph, or any other format-related object in the DOM
*/
public class DivWebElement extends AbstractClickable {
public DivWebElement(By by, WebElement parentElement) {
super(by, parentElement);
}
public DivWebElement(By by) {
super(by);
}
public DivWebElement(String cssSelector) {
super(cssSelector);
}
public DivWebElement(By by, By parentBy) {
super(by, parentBy);
}
public DivWebElement(WebElement element) {
super(element);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy