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

org.openqa.selenium.XPathLookupException Maven / Gradle / Ivy

There is a newer version: 4.20.0
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy