Interface SupportsSafariWebInspectorMaxFrameLengthOption<T extends BaseOptions<T>>

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

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

    • SAFARI_WEB_INSPECTOR_MAX_FRAME_LENGTH_OPTION

      static final String SAFARI_WEB_INSPECTOR_MAX_FRAME_LENGTH_OPTION
      See Also:
  • Method Details

    • setSafariWebInspectorMaxFrameLength

      default T setSafariWebInspectorMaxFrameLength(int length)
      The maximum size in bytes of a single data frame for the Web Inspector. Too high values could introduce slowness and/or memory leaks. Too low values could introduce possible buffer overflow exceptions. Defaults to 20MB (20*1024*1024).
      Parameters:
      length - Max size of a single data frame.
      Returns:
      self instance for chaining.
    • getSafariWebInspectorMaxFrameLength

      default Optional<Integer> getSafariWebInspectorMaxFrameLength()
      Get the maximum size in bytes of a single data frame for the Web Inspector.
      Returns:
      Size in bytes.