29 lines
622 B
Markdown
29 lines
622 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Page](./puppeteer.page.md) > [authenticate](./puppeteer.page.authenticate.md)
|
|
|
|
## Page.authenticate() method
|
|
|
|
Provide credentials for `HTTP authentication`.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
authenticate(credentials: Credentials): Promise<void>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| credentials | [Credentials](./puppeteer.credentials.md) | |
|
|
|
|
<b>Returns:</b>
|
|
|
|
Promise<void>
|
|
|
|
## Remarks
|
|
|
|
To disable authentication, pass `null`.
|
|
|