Interface SupportsSafariAutomaticProfilingOption<T extends BaseOptions<T>>

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

public interface SupportsSafariAutomaticProfilingOption<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 use automatic profiling.
    default T
    Enforces safaridriver to use Automatic Inspection.
    default T
    This capability instructs Safari to preload the Web Inspector and start a Timeline recording in the background prior to returning a newly-created window.

    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

    • safariAutomaticProfiling

      default T safariAutomaticProfiling()
      Enforces safaridriver to use Automatic Inspection.
      Returns:
      self instance for chaining.
    • setSafariAutomaticProfiling

      default T setSafariAutomaticProfiling(boolean bool)
      This capability instructs Safari to preload the Web Inspector and start a Timeline recording in the background prior to returning a newly-created window. To view the recording, open the Web Inspector through Safari's Develop menu.
      Parameters:
      bool - Whether to use automatic profiling.
      Returns:
      self instance for chaining.
    • doesSafariAutomaticProfiling

      default Optional<Boolean> doesSafariAutomaticProfiling()
      Get whether to use automatic profiling.
      Returns:
      true or false.