Bootstrap

解决:webdriver-helper安装失败&导入失败

        首先,我的python版本是3.10.8,webdriver-helper需要python版本3.9以上才能用

1.安装selenium

pip install selenium

2.安装webdriver-helper

pip install webdriver-helper 

        我这里报错无法安装,用了下面这个命令:

pip install webdriver-helper==1.*

3.导入模块

from selenium.webdriver.common.by import By
from webdriver_helper import *

        然后我这里第二个语句那个webdriver_helper又标红了。需要找到webdriver-helper包安装的路径,然后复制到项目对应的虚拟环境中(对应项目venv的lib目录下)

        大功告成!!

        然而,使用过程中,才发现webdriver-helper的1.x版本已经停用:

         我们可以这样打开浏览器:

from selenium import webdriver
browser = webdriver.Chrome()   #打开Chrome浏览器
browser.get('https://baidu.com')  #打开百度网页
;