gpt4 book ai didi

python - 通过python学习chrome浏览器的版本

转载 作者:行者123 更新时间:2023-12-05 01:13:48 25 4
gpt4 key购买 nike

我正在使用 selenium 编写脚本。我的问题是当 chrome 自动更新时,我的脚本不起作用。所以,我的解决方案是从一开始就学习 web chrome 版本(不是驱动程序)并运行相关的 chrome 驱动程序。因此,在我的桌面上,我将保留所有版本并运行正确的版本。但我找不到获取 chrome 版本的解决方案。我将非常感谢您的帮助!提前致谢!

最佳答案

试试这个。

import subprocess
output = subprocess.check_output(
r'wmic datafile where name="C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" get Version /value',
shell=True
)
print(output.decode('utf-8').strip())

输出

Version=79.0.3945.117

关于python - 通过python学习chrome浏览器的版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59681327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com