Class VirtualAuthenticatorOptions
- java.lang.Object
-
- org.openqa.selenium.devtools.webauthn.model.VirtualAuthenticatorOptions
-
public class VirtualAuthenticatorOptions extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description VirtualAuthenticatorOptions(AuthenticatorProtocol protocol, AuthenticatorTransport transport, java.lang.Boolean hasResidentKey, java.lang.Boolean hasUserVerification, java.lang.Boolean automaticPresenceSimulation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.BooleangetAutomaticPresenceSimulation()If set to true, tests of user presence will succeed immediately.java.lang.BooleangetHasResidentKey()java.lang.BooleangetHasUserVerification()AuthenticatorProtocolgetProtocol()AuthenticatorTransportgetTransport()
-
-
-
Constructor Detail
-
VirtualAuthenticatorOptions
public VirtualAuthenticatorOptions(AuthenticatorProtocol protocol, AuthenticatorTransport transport, java.lang.Boolean hasResidentKey, java.lang.Boolean hasUserVerification, java.lang.Boolean automaticPresenceSimulation)
-
-
Method Detail
-
getProtocol
public AuthenticatorProtocol getProtocol()
-
getTransport
public AuthenticatorTransport getTransport()
-
getHasResidentKey
public java.lang.Boolean getHasResidentKey()
-
getHasUserVerification
public java.lang.Boolean getHasUserVerification()
-
getAutomaticPresenceSimulation
public java.lang.Boolean getAutomaticPresenceSimulation()
If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.
-
-