Interface SupportsVerboseOption<T extends BaseOptions<T>>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String VERBOSE  
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> isVerbose()
      Get the verbose flag.
      default T setVerbose​(boolean verbose)
      Set to true to add the --verbose flag when starting WebDriver.
      • Methods inherited from interface org.openqa.selenium.Capabilities

        asMap, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge
    • Method Detail

      • setVerbose

        default T setVerbose​(boolean verbose)
        Set to true to add the --verbose flag when starting WebDriver. Unless the verbose preference has been user-set, the capability is not present because the default value is false.
        Parameters:
        verbose - flag for --verbose.
        Returns:
        self instance for chaining.
      • isVerbose

        default java.util.Optional<java.lang.Boolean> isVerbose()
        Get the verbose flag.
        Returns:
        verbose flag.