puppeteer.elementhandle.boxmodel
Home > puppeteer > ElementHandle > boxModel
#
ElementHandle.boxModel() methodThis method returns boxes of the element, or null
if the element is not visible.
boxModel(): Promise<BoxModel | null>;
Promise<BoxModel | null>
#
RemarksBoxes are represented as an array of points; Each Point is an object {x, y}
. Box points are sorted clock-wise.