ElementHandle.contentFrame() 方法
¥ElementHandle.contentFrame() method
contentFrame():Promise<Frame>
解析与元素关联的框架(如果有)。HTMLIFrameElements 始终存在。
¥Resolves the frame associated with the element, if any. Always exists for HTMLIFrameElements.
签名
¥Signature
class ElementHandle {
abstract contentFrame(this: ElementHandle<HTMLIFrameElement>): Promise<Frame>;
}
参数
¥Parameters
范围 | 类型 | 描述 |
---|---|---|
this | ElementHandle<HTMLIFrameElement> |
Returns:
Promise<Frame>
contentFrame():Promise<Frame | null>
签名
¥Signature
class ElementHandle {
abstract contentFrame(): Promise<Frame | null>;
}
Returns:
Promise<Frame | null>