Interface SupportsFullContextListOption<T extends BaseOptions<T>>

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

public interface SupportsFullContextListOption<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<Boolean>
    Get whether to return the detailed information on contexts for the get available context command.
    default T
    Enforces to return the detailed information on contexts for the get available context command.
    default T
    setFullContextList(boolean value)
    Sets to return the detailed information on contexts for the get available context command.

    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

    • fullContextList

      default T fullContextList()
      Enforces to return the detailed information on contexts for the get available context command.
      Returns:
      self instance for chaining.
    • setFullContextList

      default T setFullContextList(boolean value)
      Sets to return the detailed information on contexts for the get available context command. If this capability is enabled, then each item in the returned contexts list would additionally include WebView title, full URL and the bundle identifier. Defaults to false.
      Parameters:
      value - Whether to return the detailed info on available context command.
      Returns:
      self instance for chaining.
    • doesFullContextList

      default Optional<Boolean> doesFullContextList()
      Get whether to return the detailed information on contexts for the get available context command.
      Returns:
      True or false.