Uses of Interface
org.openqa.selenium.Credentials
-
Packages that use Credentials Package Description org.openqa.selenium -
-
Uses of Credentials in org.openqa.selenium
Classes in org.openqa.selenium that implement Credentials Modifier and Type Class Description classUsernameAndPasswordA combination of username and password to use when authenticating a browser with a website.Methods in org.openqa.selenium that return types with arguments of type Credentials Modifier and Type Method Description static java.util.function.Supplier<Credentials>UsernameAndPassword. of(java.lang.String username, java.lang.String password)Method parameters in org.openqa.selenium with type arguments of type Credentials Modifier and Type Method Description voidHasAuthentication. register(java.util.function.Predicate<java.net.URI> whenThisMatches, java.util.function.Supplier<Credentials> useTheseCredentials)Registers a check for whether a set ofCredentialsshould be used for a particular site, identified by its URI.default voidHasAuthentication. register(java.util.function.Supplier<Credentials> alwaysUseTheseCredentials)AsHasAuthentication.register(Predicate, Supplier)but attempts to apply the credentials for any request for authorization.
-