解决 FileNotFoundError: [WinError 2] 系统找不到指定的文件

模拟网页登录:

from selenium import webdriver
driver=webdriver.Chrome()

报错:

Traceback (most recent call last):
  File "C:\Users\Administrator\AppData\Local\Programs\Python\Python37\lib\site-packages\selenium\webdriver\common\service.py", line 76, in start
    stdin=PIPE)
  File "C:\Users\Administrator\AppData\Local\Programs\Python\Python37\lib\subprocess.py", line 775, in __init__
    restore_signals, start_new_session)
  File "C:\Users\Administrator\AppData\Local\Programs\Python\Python37\lib\subprocess.py", line 1178, in _execute_child
    startupinfo)
FileNotFoundError: [WinError 2] 系统找不到指定的文件。

解决方法:根据提示找到lib中的subprocess.py文件,查找class Popen模块,再将这个模块中的__init__函数中的shell = False 改成shell = True。
 

你可能感兴趣的:(#,Web自动化测试)