fix: if page closed !get element rect
This commit is contained in:
@@ -846,6 +846,10 @@ export const getRect = async (page: Page, coordinates: Coordinates, listSelector
|
|||||||
);
|
);
|
||||||
return rect;
|
return rect;
|
||||||
} else {
|
} else {
|
||||||
|
if (page.isClosed()) {
|
||||||
|
logger.debug('Page is closed, cannot get element rect (else branch)');
|
||||||
|
return null;
|
||||||
|
}
|
||||||
const rect = await page.evaluate(
|
const rect = await page.evaluate(
|
||||||
async ({ x, y }) => {
|
async ({ x, y }) => {
|
||||||
const getDeepestElementFromPoint = (x: number, y: number): HTMLElement | null => {
|
const getDeepestElementFromPoint = (x: number, y: number): HTMLElement | null => {
|
||||||
|
|||||||
Reference in New Issue
Block a user