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