puppeteer/docs/api/puppeteer.page.removescripttoevaluateonnewdocument.md
Junyan b5a124ff73
feat: Page.removeScriptToEvaluateOnNewDocument (#10250)
Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
2023-05-26 07:56:45 +00:00

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&lt;void&gt;