I'm experimenting with my first small scraper in Python, and I want to use asyncio to fetch multiple websites simultaneously. I've already written a function that works with aiohttp, however since aiohttp.request() does not execute javascript this isn't ideal for scraping some dynamic web pages. So this motivates trying to use Selenium with PhantomJS as a headless browser.I'm experimenting with my first small scraper i