← Back to Page domain

Page.removeScriptToEvaluateOnLoad

Deprecated, please use removeScriptToEvaluateOnNewDocument instead.

Domain: Page deprecated

Parameters

NameTypeDescription
identifierScriptIdentifier

Example Request

{
  "id": 1,
  "method": "Page.removeScriptToEvaluateOnLoad",
  "params": {
    "identifier": "identifier-value"
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Page.removeScriptToEvaluateOnLoad', {"identifier": "identifier-value"});
console.log(result);