Skip to main content
Version: 23.8.0

Page.removeExposedFunction() 方法

¥Page.removeExposedFunction() method

该方法从页面的 window 对象中删除先前通过 $Page.exposeFunction() 添加的名为 name 的函数。

¥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

范围

类型

描述

name

string

Returns:

Promise<void>