feat: start with the first element in the path

This commit is contained in:
karishmas6
2024-06-05 22:31:05 +05:30
parent 1261994899
commit 7ba43ec3d7

View File

@@ -269,6 +269,11 @@ export const getSelectors = async (page: Page, coordinates: Coordinates) => {
return null;
}
function selector(path: Path): string {
let node = path[0];
}
};