Created
November 18, 2019 09:40
-
-
Save satour/6f9e576645dbe85df56eaf35962fe421 to your computer and use it in GitHub Desktop.
This file contains 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
let txt = ""; | |
document.querySelectorAll('.ReactVirtualized__Grid__innerScrollContainer')[0].childNodes.forEach(function(el) { | |
txt = txt + el.childNodes[2].firstChild.innerText + ' ' + el.childNodes[3].firstChild.innerText + ',\n' | |
}) | |
console.log(txt) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment