2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Page.authenticate
|
|
|
|
---
|
|
|
|
|
|
|
|
# Page.authenticate() method
|
|
|
|
|
|
|
|
Provide credentials for `HTTP authentication`.
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Page {
|
|
|
|
authenticate(credentials: Credentials): Promise<void>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| ----------- | ----------------------------------------- | ----------- |
|
|
|
|
| credentials | [Credentials](./puppeteer.credentials.md) | |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
To disable authentication, pass `null`.
|