Uses of Class
org.openqa.selenium.devtools.v141.webauthn.model.AuthenticatorId
Packages that use AuthenticatorId
Package
Description
-
Uses of AuthenticatorId in org.openqa.selenium.devtools.v141.webauthn
Methods in org.openqa.selenium.devtools.v141.webauthn that return types with arguments of type AuthenticatorIdModifier and TypeMethodDescriptionstatic org.openqa.selenium.devtools.Command<AuthenticatorId> WebAuthn.addVirtualAuthenticator(VirtualAuthenticatorOptions options) Creates and adds a virtual authenticator.Methods in org.openqa.selenium.devtools.v141.webauthn with parameters of type AuthenticatorIdModifier and TypeMethodDescriptionstatic org.openqa.selenium.devtools.Command<Void> WebAuthn.addCredential(AuthenticatorId authenticatorId, Credential credential) Adds the credential to the specified authenticator.static org.openqa.selenium.devtools.Command<Void> WebAuthn.clearCredentials(AuthenticatorId authenticatorId) Clears all the credentials from the specified device.static org.openqa.selenium.devtools.Command<Credential> WebAuthn.getCredential(AuthenticatorId authenticatorId, String credentialId) Returns a single credential stored in the given virtual authenticator that matches the credential ID.static org.openqa.selenium.devtools.Command<List<Credential>> WebAuthn.getCredentials(AuthenticatorId authenticatorId) Returns all the credentials stored in the given virtual authenticator.static org.openqa.selenium.devtools.Command<Void> WebAuthn.removeCredential(AuthenticatorId authenticatorId, String credentialId) Removes a credential from the authenticator.static org.openqa.selenium.devtools.Command<Void> WebAuthn.removeVirtualAuthenticator(AuthenticatorId authenticatorId) Removes the given authenticator.static org.openqa.selenium.devtools.Command<Void> WebAuthn.setAutomaticPresenceSimulation(AuthenticatorId authenticatorId, Boolean enabled) Sets whether tests of user presence will succeed immediately (if true) or fail to resolve (if false) for an authenticator.static org.openqa.selenium.devtools.Command<Void> WebAuthn.setCredentialProperties(AuthenticatorId authenticatorId, String credentialId, Optional<Boolean> backupEligibility, Optional<Boolean> backupState) Allows setting credential properties.static org.openqa.selenium.devtools.Command<Void> WebAuthn.setResponseOverrideBits(AuthenticatorId authenticatorId, Optional<Boolean> isBogusSignature, Optional<Boolean> isBadUV, Optional<Boolean> isBadUP) Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.static org.openqa.selenium.devtools.Command<Void> WebAuthn.setUserVerified(AuthenticatorId authenticatorId, Boolean isUserVerified) Sets whether User Verification succeeds or fails for an authenticator. -
Uses of AuthenticatorId in org.openqa.selenium.devtools.v141.webauthn.model
Methods in org.openqa.selenium.devtools.v141.webauthn.model that return AuthenticatorIdModifier and TypeMethodDescriptionCredentialAdded.getAuthenticatorId()CredentialAsserted.getAuthenticatorId()CredentialDeleted.getAuthenticatorId()CredentialUpdated.getAuthenticatorId()Constructors in org.openqa.selenium.devtools.v141.webauthn.model with parameters of type AuthenticatorIdModifierConstructorDescriptionCredentialAdded(AuthenticatorId authenticatorId, Credential credential) CredentialAsserted(AuthenticatorId authenticatorId, Credential credential) CredentialDeleted(AuthenticatorId authenticatorId, String credentialId) CredentialUpdated(AuthenticatorId authenticatorId, Credential credential)