puppeteer/docs/api/puppeteer.page.authenticate.md
2023-11-09 13:57:33 +01:00

30 lines
562 B
Markdown

---
sidebar_label: Page.authenticate
---
# Page.authenticate() method
Provide credentials for `HTTP authentication`.
#### Signature:
```typescript
class Page {
abstract authenticate(credentials: Credentials): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| ----------- | ----------------------------------------- | ----------- |
| credentials | [Credentials](./puppeteer.credentials.md) | |
**Returns:**
Promise&lt;void&gt;
## Remarks
To disable authentication, pass `null`.