Interface HasVirtualAuthenticator
-
- All Known Implementing Classes:
ChromeDriver
,ChromiumDriver
,EdgeDriver
,FirefoxDriver
,InternetExplorerDriver
,RemoteWebDriver
,SafariDriver
public interface HasVirtualAuthenticator
Interface implemented by each driver that allows access to the virtual authenticator API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VirtualAuthenticator
addVirtualAuthenticator(VirtualAuthenticatorOptions options)
Adds a virtual authenticator with the given options.void
removeVirtualAuthenticator(VirtualAuthenticator authenticator)
Removes a previously added virtual authenticator.
-
-
-
Method Detail
-
addVirtualAuthenticator
VirtualAuthenticator addVirtualAuthenticator(VirtualAuthenticatorOptions options)
Adds a virtual authenticator with the given options.- Returns:
- the new virtual authenticator.
-
removeVirtualAuthenticator
void removeVirtualAuthenticator(VirtualAuthenticator authenticator)
Removes a previously added virtual authenticator. The authenticator is no longer valid after removal, so no methods may be called.
-
-