Interface SupportsLogcatFilterSpecsOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.String> getLogcatFilterSpecs()
      Get the logcat filter format.
      default T setLogcatFilterSpecs​(java.lang.String format)
      Series of tag[:priority] where tag is a log component tag (or * for all) and priority is: V Verbose, D Debug, I Info, W Warn, E Error, F Fatal, S Silent (supress all output).
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • LOGCAT_FILTER_SPECS_OPTION

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

      • setLogcatFilterSpecs

        default T setLogcatFilterSpecs​(java.lang.String format)
        Series of tag[:priority] where tag is a log component tag (or * for all) and priority is: V Verbose, D Debug, I Info, W Warn, E Error, F Fatal, S Silent (supress all output). '' means ':d' and tag by itself means tag:v. If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS. If no filterspec is found, filter defaults to '*:I'.
        Parameters:
        format - The filter specifier.
        Returns:
        self instance for chaining.
      • getLogcatFilterSpecs

        default java.util.Optional<java.lang.String> getLogcatFilterSpecs()
        Get the logcat filter format.
        Returns:
        Format specifier.