Page.removeExposedFunction() 方法
此方法从页面的 window
对象中删除先前通过 Page.exposeFunction() 添加的名为 name
的函数。
签名
class Page {
abstract removeExposedFunction(name: string): Promise<void>;
}
参数
参数 | 类型 | 描述 |
---|---|---|
name | string |
返回
Promise<void>
此方法从页面的 window
对象中删除先前通过 Page.exposeFunction() 添加的名为 name
的函数。
class Page {
abstract removeExposedFunction(name: string): Promise<void>;
}
参数 | 类型 | 描述 |
---|---|---|
name | string |
返回
Promise<void>