find_element_by_xpath()被弃用解决方案
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
打开百度并且点击登录按钮代码:
from selenium.webdriver import Chrome
Chrome = Chrome()#启动chromedriver
Chrome.get('http://www.baidu.com')#打开http://www.baidu.com
Chrome.find_element_by_xpath('//*[@id="s-top-loginbtn"]').click()#点击登录按钮
从下图中,我们可以看到find_element_by_xpath被带上了删除线
但是执行却可以执行,只是在会提示:
DeprecationWarning: find_element_by_* commands are deprecated. Please use find_element() instead
Chrome.find_element_by_xpath('//*[@id="s-top-loginbtn"]').click()#点击登录按钮
更改后代码:
from selenium.webdriver.common.by import By
from selenium.webdriver import Chrome
Chrome = Chrome()#启动chromedriver
Chrome.get('http://www.baidu.com')#打开http://www.baidu.com
Chrome.find_element(By.XPATH,'//*[@id="s-top-loginbtn"]').click()#点击登录按钮
改动新添加了
from selenium.webdriver.common.by import By
将:
Chrome.find_element_by_xpath('//*[@id="s-top-loginbtn"]').click()#点击登录按钮
修改为:
Chrome.find_element(By.XPATH,'//*[@id="s-top-loginbtn"]').click()#点击登录按钮
如果本文对你有帮助的话,请不要吝啬你的赞,谢谢!
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
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 7 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)