I'm trying my hand at web scraping, and everything's working except I'm using it on blogs with Disqus comments that take around 30 seconds to load. I don't need the Disqus comments, just the content of the blog, which loads almost immediately. How do I get only what I need so there's no excessive waiting?
from selenium import webdriver
browser = webdriver.Firefox()
browser.get(url) # This takes too long because of Disqus
# Web scraping stuff here
I'm using Windows 10.