mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
b5a124ff73
Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
26 lines
496 B
Markdown
26 lines
496 B
Markdown
---
|
|
sidebar_label: Page.removeScriptToEvaluateOnNewDocument
|
|
---
|
|
|
|
# Page.removeScriptToEvaluateOnNewDocument() method
|
|
|
|
Removes script that injected into page by Page.evaluateOnNewDocument.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Page {
|
|
removeScriptToEvaluateOnNewDocument(identifier: string): Promise<void>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| ---------- | ------ | ----------------- |
|
|
| identifier | string | script identifier |
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|