Interface SupportsSkipServerInstallationOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesSkipServerInstallation()
      Get whether to skip the server components installation on the device under test and all the related checks.
      default T setSkipServerInstallation​(boolean value)
      Set whether to skip the server components installation on the device under test and all the related checks.
      default T skipServerInstallation()
      Enables skipping of the server components installation on the device under test and all the related checks.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • SKIP_SERVER_INSTALLATION_OPTION

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

      • skipServerInstallation

        default T skipServerInstallation()
        Enables skipping of the server components installation on the device under test and all the related checks. This could help to speed up the session startup if you know for sure the correct server version is installed on the device. In case the server is not installed or an incorrect version of it is installed then you may get an unexpected error later.
        Returns:
        self instance for chaining.
      • setSkipServerInstallation

        default T setSkipServerInstallation​(boolean value)
        Set whether to skip the server components installation on the device under test and all the related checks. This could help to speed up the session startup if you know for sure the correct server version is installed on the device. In case the server is not installed or an incorrect version of it is installed then you may get an unexpected error later.
        Parameters:
        value - True to skip the server installation.
        Returns:
        self instance for chaining.
      • doesSkipServerInstallation

        default java.util.Optional<java.lang.Boolean> doesSkipServerInstallation()
        Get whether to skip the server components installation on the device under test and all the related checks.
        Returns:
        True or false.