mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
30 lines
562 B
Markdown
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<void>
|
|
|
|
## Remarks
|
|
|
|
To disable authentication, pass `null`.
|