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

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

Go to download

Selenium automates browsers. That's it! What you do with that power is entirely up to you.

There is a newer version: 4.24.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