Created
November 17, 2023 12:40
-
-
Save ozselgin/1727be68a06f7a20f1d4032acf2608eb to your computer and use it in GitHub Desktop.
reduceQuerySelectorAll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.from(document.querySelectorAll("div[data-column=asin] span")).reduce((acc, current) => acc + "," + current.innerText, ""); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment