Interface SupportsBuildCheckOption<T extends BaseOptions<T>>

    • Field Summary

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

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

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

    • Method Detail

      • setBuildCheckDisabled

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

        default java.util.Optional<java.lang.Boolean> isBuildCheckDisabled()
        Get disable build check flag.
        Returns:
        disable build check flag.