puppeteer/website/versioned_docs/version-22.0.0/api/puppeteer.page.authenticate.md

30 lines
562 B
Markdown
Raw Normal View History

---
sidebar_label: Page.authenticate
---
# Page.authenticate() method
Provide credentials for `HTTP authentication`.
2022-10-24 14:31:12 +00:00
#### 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`.