diff --git a/server/src/workflow-management/selector.ts b/server/src/workflow-management/selector.ts index e811db3f..3cf8bb34 100644 --- a/server/src/workflow-management/selector.ts +++ b/server/src/workflow-management/selector.ts @@ -628,7 +628,10 @@ export const getSelectors = async (page: Page, coordinates: Coordinates) => { function genAttributeSet(element: HTMLElement, attributes: string[]) { return new Set( - + attributes.filter((attr) => { + const attrValue = element.getAttribute(attr); + + }) ); }