Interface SupportsWebDriverAgentMacUrlOption<T extends BaseOptions<T>>

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

public interface SupportsWebDriverAgentMacUrlOption<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 the URL Appium will connect to an existing WebDriverAgentMac instance.
    default T
    Set the URL Appium will connect to an existing WebDriverAgentMac instance at this URL instead of starting a new one.
    default T
    Set the URL Appium will connect to an existing WebDriverAgentMac instance at this URL instead of starting a new one.

    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

    • setWebDriverAgentMacUrl

      default T setWebDriverAgentMacUrl(URL url)
      Set the URL Appium will connect to an existing WebDriverAgentMac instance at this URL instead of starting a new one.
      Parameters:
      url - E.g. "http://192.168.10.1:10101"
      Returns:
      self instance for chaining.
    • setWebDriverAgentMacUrl

      default T setWebDriverAgentMacUrl(String url)
      Set the URL Appium will connect to an existing WebDriverAgentMac instance at this URL instead of starting a new one.
      Parameters:
      url - E.g. "http://192.168.10.1:10101"
      Returns:
      self instance for chaining.
    • getWebDriverAgentMacUrl

      default Optional<URL> getWebDriverAgentMacUrl()
      Get the URL Appium will connect to an existing WebDriverAgentMac instance.
      Returns:
      Server URL.