feat: retrive class selectors for el

This commit is contained in:
karishmas6
2024-06-05 23:22:34 +05:30
parent aeed80ee8d
commit 16e617405e

View File

@@ -332,8 +332,13 @@ export const getSelectors = async (page: Page, coordinates: Coordinates) => {
);
}
function classNames(input: Element): Node[] {
const names = Array.from(input.classList).filter(config.className);
}
};