问题
使用selenium的时候控制台报错
python
ValueError: Timeout value connect was <object object at 0x000002610094BEC0>, but it must be an int, float or None.
根因
根因是版本冲突
Name | 冲突版本 | 合理版本 |
---|---|---|
selenium | 3.141.0 | 4.21.0 |
urllib3 | 2.0.3 | 2.2.1 |
解决
解决方法是把selenium和urllib3都升级到最新版本
shell
pip install --upgrade selenium --trusted-host mirrors.aliyun.com
pip install --upgrade urllib3 --trusted-host mirrors.aliyun.com