feat: create a new Set object to store unique attribute values

This commit is contained in:
karishmas6
2024-06-06 05:03:43 +05:30
parent 90de043ba5
commit 67827f9202

View File

@@ -625,8 +625,14 @@ export const getSelectors = async (page: Page, coordinates: Coordinates) => {
formSelector,
};
}
function genAttributeSet(element: HTMLElement, attributes: string[]) {
return new Set(
);
}
};
@@ -635,3 +641,4 @@ export const getSelectors = async (page: Page, coordinates: Coordinates) => {