ElementHandle.boxModel() 方法
¥ElementHandle.boxModel() method
此方法返回元素的框,如果元素是 不是布局的一部分,则返回 null
(例如:display: none
)。
¥This method returns boxes of the element, or null
if the element is not part of the layout (example: display: none
).
签名
¥Signature
class ElementHandle {
boxModel(): Promise<BoxModel | null>;
}
Returns:
Promise<BoxModel | null>
备注
¥Remarks
盒子被表示为点数组;每个点都是一个对象 {x, y}
。箱点按顺时针顺序排序。
¥Boxes are represented as an array of points; Each Point is an object {x, y}
. Box points are sorted clock-wise.