Enum Class BrowserActionsHelper.BasicAuthenticationStrategy
java.lang.Object
java.lang.Enum<BrowserActionsHelper.BasicAuthenticationStrategy>
com.shaft.gui.browser.internal.BrowserActionsHelper.BasicAuthenticationStrategy
- All Implemented Interfaces:
Serializable, Comparable<BrowserActionsHelper.BasicAuthenticationStrategy>, Constable
- Enclosing class:
BrowserActionsHelper
public static enum BrowserActionsHelper.BasicAuthenticationStrategy
extends Enum<BrowserActionsHelper.BasicAuthenticationStrategy>
The basic-authentication mechanism selected by
BrowserActionsHelper.determineBasicAuthenticationStrategy(String, boolean).-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRegister aHasAuthenticationhandler on the driver instance (CDP-backed for Chromium browsers, augmented for remote sessions when BiDi is enabled).Embed the credentials directly in the target URL as a fallback for drivers/executions that cannot provide a native authentication handler. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
NATIVE_HAS_AUTHENTICATION
Register aHasAuthenticationhandler on the driver instance (CDP-backed for Chromium browsers, augmented for remote sessions when BiDi is enabled). -
URL_EMBEDDED_CREDENTIALS
Embed the credentials directly in the target URL as a fallback for drivers/executions that cannot provide a native authentication handler.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-