feat: check if provided CSS sel path selects the same el as input el

This commit is contained in:
karishmas6
2024-06-06 00:27:18 +05:30
parent 6d3ba935c1
commit fff6149fef

View File

@@ -430,7 +430,11 @@ export const getSelectors = async (page: Page, coordinates: Coordinates) => {
visited: Map<string, boolean>;
};
function same(path: Path, input: Element) {
return rootDocument.querySelector(selector(path)) === input;
}
};