chore: lint

This commit is contained in:
karishmas6
2024-09-02 11:59:59 +05:30
parent d9e6769494
commit 06292ef9ed

View File

@@ -748,7 +748,6 @@ export const getNonUniqueSelectors = async (page: Page, coordinates: Coordinates
} }
} }
} }
return selector; return selector;
} }
@@ -763,7 +762,6 @@ export const getNonUniqueSelectors = async (page: Page, coordinates: Coordinates
element = element.parentElement; element = element.parentElement;
depth++; depth++;
} }
return path.join(' > '); return path.join(' > ');
} }
@@ -775,7 +773,6 @@ export const getNonUniqueSelectors = async (page: Page, coordinates: Coordinates
const childSelector = getSelectorPath(child as HTMLElement); const childSelector = getSelectorPath(child as HTMLElement);
childSelectors.push(childSelector); childSelectors.push(childSelector);
}); });
return childSelectors; return childSelectors;
} }