selenium的版本对应的python中3.6到3.9的有
时间: 2023-02-11 08:40:21 浏览: 1412
Selenium 的版本与 Python 的版本之间没有严格的对应关系。Selenium 支持 Python 2 和 Python 3,因此可以在 Python 3.6 到 Python 3.9 中使用。你需要在安装 Selenium 前确保你的 Python 版本是支持的,一般来说,最新版本的 Selenium 都是支持最新版本的 Python 的,所以使用最新版本的 Selenium 和 Python 应该是没有问题的。
相关问题
selenium版本对应chrome
Selenium版本 Chrome版本
Selenium 4.0.0-alpha-7 Chrome 89
Selenium 3.141.59 Chrome 72-74
Selenium 3.13 Chrome 68-70
Selenium 3.12 Chrome 67-69
Selenium 3.11 Chrome 66-68
Selenium 3.10 Chrome 65-67
Selenium 3.9 Chrome 64-66
Selenium 3.8 Chrome 63-65
Selenium 3.7 Chrome 62-64
Selenium 3.6 Chrome 61-63
Selenium 3.5 Chrome 60-62
Selenium 3.4 Chrome 59-61
Selenium 3.3 Chrome 58-60
Selenium 3.2 Chrome 57-59
Selenium 3.1 Chrome 56-58
Selenium 3.0 Chrome 55-57
我在python3.6版本中使用from selenium.webdriver.support import expected_conditions as ec,却报: cannot import name 'asynccontextmanager
这个问题可能是因为您的Python版本太低,无法支持asynccontextmanager模块。asynccontextmanager模块在Python 3.7中引入,因此它不会在早期版本中可用。
您可以尝试升级Python到最新版本,或者使用一个早期版本的selenium,该版本不需要asynccontextmanager模块。您可以使用以下命令安装早期版本的selenium:
```
pip install selenium==3.141.0
```
如果您仍然遇到问题,请检查您的代码中是否有其他导入错误或语法错误。
阅读全文