Interface SupportsSkipLogCaptureOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesSkipLogCapture()
      Get whether to skip capturing system logs.
      default T setSkipLogCapture​(boolean value)
      Skips to start capturing system logs.
      default T skipLogCapture()
      Skips capturing system logs.
      • Methods inherited from interface org.openqa.selenium.Capabilities

        asMap, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatform, getPlatformName, getVersion, is, merge
    • Field Detail

      • SKIP_LOG_CAPTURE_OPTION

        static final java.lang.String SKIP_LOG_CAPTURE_OPTION
        See Also:
        Constant Field Values
    • Method Detail

      • skipLogCapture

        default T skipLogCapture()
        Skips capturing system logs.
        Returns:
        self instance for chaining.
      • setSkipLogCapture

        default T setSkipLogCapture​(boolean value)
        Skips to start capturing system logs. It might improve network performance. Log-related commands won't work if the capability is enabled. Defaults to false.
        Parameters:
        value - Set it to true in order to skip logcat capture.
        Returns:
        self instance for chaining.
      • doesSkipLogCapture

        default java.util.Optional<java.lang.Boolean> doesSkipLogCapture()
        Get whether to skip capturing system logs.
        Returns:
        True or false.