io.github.sukgu.elements.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automation Show documentation
Show all versions of automation Show documentation
This project automates shadow-dom elements using java selenium
package io.github.sukgu.elements;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.Point;
import org.openqa.selenium.Rectangle;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.WebElement;
public class Element implements WebElement {
public X getScreenshotAs(OutputType arg0) throws WebDriverException {
// TODO Auto-generated method stub
return null;
}
public void clear() {
// TODO Auto-generated method stub
}
public void click() {
// TODO Auto-generated method stub
}
public WebElement findElement(By arg0) {
// TODO Auto-generated method stub
return null;
}
public List findElements(By arg0) {
// TODO Auto-generated method stub
return null;
}
public String getAttribute(String arg0) {
// TODO Auto-generated method stub
return null;
}
public String getCssValue(String arg0) {
// TODO Auto-generated method stub
return null;
}
public Point getLocation() {
// TODO Auto-generated method stub
return null;
}
public Rectangle getRect() {
// TODO Auto-generated method stub
return null;
}
public Dimension getSize() {
// TODO Auto-generated method stub
return null;
}
public String getTagName() {
// TODO Auto-generated method stub
return null;
}
public String getText() {
// TODO Auto-generated method stub
return null;
}
public boolean isDisplayed() {
// TODO Auto-generated method stub
return false;
}
public boolean isEnabled() {
// TODO Auto-generated method stub
return false;
}
public boolean isSelected() {
// TODO Auto-generated method stub
return false;
}
public void sendKeys(CharSequence... arg0) {
// TODO Auto-generated method stub
}
public void submit() {
// TODO Auto-generated method stub
}
}