2023-05-31 13:09:47 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Page.removeScriptToEvaluateOnNewDocument
|
|
|
|
---
|
|
|
|
|
|
|
|
# Page.removeScriptToEvaluateOnNewDocument() method
|
|
|
|
|
|
|
|
Removes script that injected into page by Page.evaluateOnNewDocument.
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Page {
|
2023-09-22 12:08:46 +00:00
|
|
|
abstract removeScriptToEvaluateOnNewDocument(
|
|
|
|
identifier: string
|
|
|
|
): Promise<void>;
|
2023-05-31 13:09:47 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
<table><thead><tr><th>
|
2023-05-31 13:09:47 +00:00
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
identifier
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
string
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
script identifier
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2023-05-31 13:09:47 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|