ChromeDriver假设Chrome在传递profile参数时崩溃了

2024-09-30 01:29:05 发布

您现在位置:Python中文网/ 问答频道 /正文

如果任何Chrome进程正在运行并且运行以下代码,堆栈溢出将从不加载:

options = webdriver.ChromeOptions()
options.add_argument("user-data-dir=C:\\Users\\RvBVakama\\AppData\\Local\\Google\\Chrome\\User Data")
options.add_argument('--profile-directory=Profile 1')
w = webdriver.Chrome('C:/Program Files (x86)/Google/Chrome/Application/chromedriver.exe', options=options)

w.get("https://stackoverflow.com/")

如果存在任何Chrome进程,并且运行以下代码,它将在几分钟后加载堆栈溢出:

^{pr2}$

唯一的区别是第一个代码块使用profile1启动Chrome。在

以下是块1的错误日志:

[13768:7324:1216/205746.092:ERROR:cache_util_win.cc(19)] Unable to move the cache: 0
[13768:7324:1216/205746.093:ERROR:cache_util.cc(140)] Unable to move cache folder C:\Users\RvBVakama\AppData\Local\Google\Chrome\User Data\ShaderCache\GPUCache to C:\Users\RvBVakama\AppData\Local\Google\Chrome\User Data\ShaderCache\old_GPUCache_000
[13768:7324:1216/205746.094:ERROR:disk_cache.cc(184)] Unable to create cache
[13768:7324:1216/205746.095:ERROR:shader_disk_cache.cc(622)] Shader Cache Creation failed: -2
Traceback (most recent call last):
  File "c:\Users\RvBVakama\.vscode\extensions\ms-python.python-2018.12.1\pythonFiles\ptvsd_launcher.py", line 45, in <module>
    main(ptvsdArgs)
  File "c:\Users\RvBVakama\.vscode\extensions\ms-python.python-2018.12.1\pythonFiles\lib\python\ptvsd\__main__.py", line 265, in main
    wait=args.wait)
  File "c:\Users\RvBVakama\.vscode\extensions\ms-python.python-2018.12.1\pythonFiles\lib\python\ptvsd\__main__.py", line 256, in handle_args
    run_main(addr, name, kind, *extra, **kwargs)
  File "c:\Users\RvBVakama\.vscode\extensions\ms-python.python-2018.12.1\pythonFiles\lib\python\ptvsd\_local.py", line 52, in run_main
    runner(addr, name, kind == 'module', *extra, **kwargs)
  File "c:\Users\RvBVakama\.vscode\extensions\ms-python.python-2018.12.1\pythonFiles\lib\python\ptvsd\runner.py", line 32, in run
    set_trace=False)
  File "c:\Users\RvBVakama\.vscode\extensions\ms-python.python-2018.12.1\pythonFiles\lib\python\ptvsd\_vendored\pydevd\pydevd.py", line 1283, in run
    return self._exec(is_module, entry_point_fn, module_name, file, globals, locals)
  File "c:\Users\RvBVakama\.vscode\extensions\ms-python.python-2018.12.1\pythonFiles\lib\python\ptvsd\_vendored\pydevd\pydevd.py", line 1290, in _exec
    pydev_imports.execfile(file, globals, locals)  # execute the script
  File "c:\Users\RvBVakama\.vscode\extensions\ms-python.python-2018.12.1\pythonFiles\lib\python\ptvsd\_vendored\pydevd\_pydev_imps\_pydev_execfile.py", line 25, in execfile
    exec(compile(contents+"\n", file, 'exec'), glob, loc)
  File "c:\Users\RvBVakama\Desktop\tet.py", line 9, in <module>
    w = webdriver.Chrome('C:/Program Files (x86)/Google/Chrome/Application/chromedriver.exe', options=options)
  File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 81, in __init__
    desired_capabilities=desired_capabilities)
  File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 157, in __init__
    self.start_session(capabilities, browser_profile)
  File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 252, in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
  File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
  File "C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: crashed
  (unknown error: DevToolsActivePort file doesn't exist)
  (The process started from chrome location C:\Program Files (x86)\Google\Chrome\Application\chrome.exe is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
  (Driver info: chromedriver=2.45.615291 (ec3682e3c9061c10f26ea9e5cdcf3c53f3f74387),platform=Windows NT 6.1.7601 SP1 x86_64)

注意最后一行。

我不确定为什么chromedriver认为Chrome已经崩溃了。在


Tags: inpyliblineextensionsfileschromeprogram
2条回答

我不确定这是同一个用户数据目录,但不同的配置文件会导致冲突。我总是在脚本中使用另一个用户数据目录。在

但看了你的案子我想是的。在

顺便说一句,为了让生活更轻松,为什么不直接复制到一个较短的目录地址?-说“C:\ChromeUserData”。在

如果您不关心旧的设置,只需指定user data dir到一个新位置。Chrome将为您创建个人资料和其他东西。(指定的目录必须存在。)

例如:

options = webdriver.ChromeOptions()
options.add_argument(" user-data-dir=D:\\chromedriver\\UserDataDir") #Path to your chrome user-data/profile
options.add_argument(' disable-infobars') #disable the automation prompt bar
options.add_argument(' lang=en') #Set language to English
w = webdriver.Chrome(executable_path="D:\\chromedriver\\chromedriver.exe", chrome_options=options)

假设D:\chromedriver\UserDataDir存在(或者您先创建它) 以及chromedriver.exe位于D:\chromedriver\chromedriver.exe。在

这样,您就不需要再指定配置文件目录了。脚本将在D:\\chromedriver\\UserDataDir中创建和使用默认目录/配置文件,并保存您所做的任何更改。在

另一个提示:你可以chromedriver.exe在目录中python.exe,从而节省了指定可执行路径的需要,也会减少可能出现的错误。在

为了使其更可靠,您可以将这些放在上面的代码片段之前:

^{2}$

好的,所以修复方法是转到C:\Users\NAME\AppData\Local\Google\Chrome,复制“User Data”文件夹并给它另一个名称。 然后只需将“user data dir”参数设置为新文件夹。在

# set up the chrome options to launch with the AUTO profile
options = webdriver.ChromeOptions()
options.add_argument("user-data-dir=C:\\Users\\RvBVakama\\AppData\\Local\\Google\\Chrome\\User Data AUTO")
options.add_argument(' profile-directory=Profile 1')
# start chrome with the driver
w = webdriver.Chrome('C:/Program Files (x86)/Google/Chrome/Application/chromedriver.exe', options=options)

enter image description here

相关问题 更多 >

    热门问题