I'm trying to extract all hrefs on a page.
I have tried the following:
response.css('a::attr(href)').extract()
response.xpath('//@href').extract()
It's extracting a significant chunk of the links, but not all of them...
More concretely, I'm unable to scrape the twitter link from this site: https://www.acchain.org/
Any insight is appreciated.