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

io.appium.java_client.NoSuchContextException Maven / Gradle / Ivy

There is a newer version: 9.4.0
Show newest version
package io.appium.java_client;

import org.openqa.selenium.NotFoundException;

/**
 * Thrown by {@link org.openqa.selenium.WebDriver.TargetLocator#context(String) WebDriver.switchTo().context(String
 * name)}.
 */
public class NoSuchContextException extends NotFoundException {

  public NoSuchContextException(String reason) {
    super(reason);
  }

  public NoSuchContextException(String reason, Throwable cause) {
    super(reason, cause);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy