org.openqa.selenium.XPathLookupException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-api Show documentation
Show all versions of selenium-api Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
package org.openqa.selenium;
public class XPathLookupException extends WebDriverException {
public XPathLookupException() {
super();
}
public XPathLookupException(String message) {
super(message);
}
public XPathLookupException(Throwable cause) {
super(cause);
}
public XPathLookupException(String message, Throwable cause) {
super(message, cause);
}
}