Скрипт для получения списков с сайта https://human-nonhuman.info/
Получите два списка: humans и nonhumans
Получите два списка: humans и nonhumans
const humans = Array.from(document.querySelectorAll('body > table td.comm:nth-child(2) .fio')).map(fio => fio.innerText).join('\n') | |
const nonhumans = Array.from(document.querySelectorAll('body > table td:last-child:not(:nth-child(1)) .fio')).map(fio => fio.innerText).join('\n') |