feat: check if element found @ coordinates
This commit is contained in:
@@ -18,6 +18,11 @@ export const getRect = async (page: Page, coordinates: Coordinates) => {
|
|||||||
const rect = await page.evaluate(
|
const rect = await page.evaluate(
|
||||||
async ({ x, y }) => {
|
async ({ x, y }) => {
|
||||||
const el = document.elementFromPoint(x, y) as HTMLElement;
|
const el = document.elementFromPoint(x, y) as HTMLElement;
|
||||||
|
if (el) {
|
||||||
|
const { parentElement } = el;
|
||||||
|
|
||||||
|
}},
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|||||||
Reference in New Issue
Block a user