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
| (async function scrapeDomains() { | |
| const allDomains = []; | |
| async function getDomainsFromPage() { | |
| const domainLinks = document.querySelectorAll('table.ui-table tbody tr td:first-child a.link'); | |
| const domains = Array.from(domainLinks).map(link => link.textContent.trim()); | |
| allDomains.push(...domains); | |
| } | |
| async function clickNext() { |