puppeteer/docs/api/puppeteer.page.removeexposedfunction.md
2023-11-09 13:57:33 +01:00

525 B

sidebar_label
Page.removeExposedFunction

Page.removeExposedFunction() method

The method removes a previously added function via $Page.exposeFunction() called name from the page's window object.

Signature:

class Page {
  abstract removeExposedFunction(name: string): Promise<void>;
}

Parameters

Parameter Type Description
name string

Returns:

Promise<void>