playwright._impl._api_types.Error: Executable doesn't exist at C:\Users\1\AppData\Local\ms-playwright\chromium-1076\chrome-win\chrome.exe
时间: 2023-10-03 17:09:08 浏览: 813
playwright-query-selector-all方法详解
这个错误是由于Playwright的可执行文件在指定路径不存在所导致的。你可以尝试重新安装Playwright并确保将其包含在打包应用程序中。以下是解决方案的步骤:
1. 重新安装Playwright,执行以下命令:PLAYWRIGHT_BROWSERS_PATH=0 playwright install chromium(如果你使用的是其他浏览器插件,请将chromium替换为相应的浏览器名称)。
2. 然后,再次使用PyInstaller将Python代码打包成app/exe文件,执行命令:pyinstaller -F main.py。
如果上述方法仍然无法解决问题,并且你的chromium文件在C:\Users\1\AppData\Local\ms-playwright\chromium-1076\chrome-win\目录下,请确保该路径下的可执行文件chrome.exe存在。
阅读全文