意思:弃用警告:不推荐使用 find_element_by_* 命令。 请改用 find_element()
原来的写法:

el = web.find_element_by_xpath('//*[@id="changeCityBox"]/p[1]/a')

现在的写法:记得先导入from selenium.webdriver.common.by import By

from selenium.webdriver import Chrome
from selenium.webdriver.common.by import By
import time

#创建一个对象
web = Chrome()

web.get("http://lagou.com")

#找到某个元素,点击它
el = web.find_element(By.XPATH,'//*[@id="changeCityBox"]/p[1]/a')
el.click()  #点击事件

这样就解决报错了

GitHub 加速计划 / eleme / element
10
1
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:5 个月前 )
c345bb45 9 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 9 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐