In Python3.6 (selenium module): ConnectionAbortedError: [WinError 10053] An established connection was aborted by the software in your host machine
问题 I am studying Python with the book "Automate the boring stuff with Python" (written by Al Sweigart) and I have a problem with web scraping (Chapter 11), namely the selenium module. I am writing the following in Python IDLE: >>> from selenium import webdriver >>> browser = webdriver.Firefox() # Here Windows command black window appears # and Mozilla Firefox with blank page opens >>> browser.get('http://inventwithpython.com') Traceback (most recent call last): File "<pyshell#2>", line 1, in