removeScriptToEvaluateOnNewDocument method

Future<void> removeScriptToEvaluateOnNewDocument(
  1. ScriptIdentifier identifier
)

Removes given script from the list.

Implementation

Future<void> removeScriptToEvaluateOnNewDocument(
    ScriptIdentifier identifier) async {
  await _client.send('Page.removeScriptToEvaluateOnNewDocument', {
    'identifier': identifier,
  });
}