再次,我对此表示歉意,我看不到。
我安装了Selenium并在Pycharm中运行py 3.7
导入硒
从硒导入Webdriverbrowser = webdriver.Chrome() browser.get('https://stackoverflow.com')
file = browser.page_source
打印(文件)
我希望获得页面源。而是...
回溯(最近通话最近): 文件“ C:\ Users \ User \ PythonTraining \ Exercise Files \ Chap01 \ Chapter1 \ venv \ lib \ site-packages \ selenium \ webdriver \ common \ service.py”,开始,第76行 stdin = PIPE) init 中的“ C:\ Users \ User \ AppData \ Local \ Programs \ Python \ Python37-32 \ lib \ subprocess.py”文件,第756行 restore_signals,start_new_session) _execute_child中的文件“ C:\ Users \ User \ AppData \ Local \ Programs \ Python \ Python37-32 \ lib \ subprocess.py”,行1155 startupinfo) FileNotFoundError:[WinError 2]系统找不到指定的文件
在处理上述异常期间,发生了另一个异常:
回溯(最近通话最近): 文件“ C:/ Users / User / PythonTraining / Exercise Files / Chap01 / test date.py”,第11行 browser = webdriver.Chrome() init 中的文件“ C:\ Users \ User \ PythonTraining \ Exercise Files \ Chap01 \ Chapter1 \ venv \ lib \ site-packages \ selenium \ webdriver \ chrome \ webdriver.py”,第68行 self.service.start() 文件“ C:\ Users \ User \ PythonTraining \ Exercise Files \ Chap01 \ Chapter1 \ venv \ lib \ site-packages \ selenium \ webdriver \ common \ service.py”,开始,第83行 os.path.basename(self.path),self.start_error_message) selenium.common.exceptions.WebDriverException:消息:“ chromedriver”可执行文件必须位于PATH中。请参阅https://sites.google.com/a/chromium.org/chromedriver/home
以退出代码1完成的过程
这是否意味着安装有问题?还是其他问题?