跳到主要内容
版本:23.11.1

ElementHandle.contentFrame() 方法

contentFrame(): Promise<Frame>

解析与该元素关联的框架(如果有)。始终存在于 HTMLIFrameElements 中。

签名

class ElementHandle {
abstract contentFrame(this: ElementHandle<HTMLIFrameElement>): Promise<Frame>;
}

参数

参数

类型

描述

this

ElementHandle<HTMLIFrameElement>

返回

Promise<Frame>

contentFrame(): Promise<Frame | null>

签名

class ElementHandle {
abstract contentFrame(): Promise<Frame | null>;
}

返回

Promise<Frame | null>