Interface SupportsMjpegScreenshotUrlOption<T extends BaseOptions<T>>

All Superinterfaces:
CanSetCapability<T>, org.openqa.selenium.Capabilities, Serializable
All Known Implementing Classes:
EspressoOptions, UiAutomator2Options

public interface SupportsMjpegScreenshotUrlOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default Optional<URL>
    Get URL of a service that provides realtime device screenshots in MJPEG format.
    default T
    The URL of a service that provides realtime device screenshots in MJPEG format.
    default T
    The URL of a service that provides realtime device screenshots in MJPEG format.

    Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability

    amend, setCapability

    Methods inherited from interface org.openqa.selenium.Capabilities

    asMap, get, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge, required
  • Field Details

  • Method Details

    • setMjpegScreenshotUrl

      default T setMjpegScreenshotUrl(URL url)
      The URL of a service that provides realtime device screenshots in MJPEG format. If provided then the actual command to retrieve a screenshot will be requesting pictures from this service rather than directly from the server.
      Parameters:
      url - URL value.
      Returns:
      self instance for chaining.
    • setMjpegScreenshotUrl

      default T setMjpegScreenshotUrl(String url)
      The URL of a service that provides realtime device screenshots in MJPEG format. If provided then the actual command to retrieve a screenshot will be requesting pictures from this service rather than directly from the server.
      Parameters:
      url - URL value.
      Returns:
      self instance for chaining.
    • getMjpegScreenshotUrl

      default Optional<URL> getMjpegScreenshotUrl()
      Get URL of a service that provides realtime device screenshots in MJPEG format.
      Returns:
      URL value.