mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
77 lines
880 B
Markdown
77 lines
880 B
Markdown
|
---
|
||
|
sidebar_label: GoToOptions
|
||
|
---
|
||
|
|
||
|
# GoToOptions interface
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
export interface GoToOptions extends WaitForOptions
|
||
|
```
|
||
|
|
||
|
**Extends:** [WaitForOptions](./puppeteer.waitforoptions.md)
|
||
|
|
||
|
## Properties
|
||
|
|
||
|
<table><thead><tr><th>
|
||
|
|
||
|
Property
|
||
|
|
||
|
</th><th>
|
||
|
|
||
|
Modifiers
|
||
|
|
||
|
</th><th>
|
||
|
|
||
|
Type
|
||
|
|
||
|
</th><th>
|
||
|
|
||
|
Description
|
||
|
|
||
|
</th><th>
|
||
|
|
||
|
Default
|
||
|
|
||
|
</th></tr></thead>
|
||
|
<tbody><tr><td>
|
||
|
|
||
|
referer
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
`optional`
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
string
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
If provided, it will take preference over the referer header value set by [page.setExtraHTTPHeaders()](./puppeteer.page.setextrahttpheaders.md).
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
</td></tr>
|
||
|
<tr><td>
|
||
|
|
||
|
referrerPolicy
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
`optional`
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
string
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
If provided, it will take preference over the referer-policy header value set by [page.setExtraHTTPHeaders()](./puppeteer.page.setextrahttpheaders.md).
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
</td></tr>
|
||
|
</tbody></table>
|