selenium弃用警告DeprecationWarning: find_element_by_* commands are deprecated. Please use find_element()

Posted 程序媛_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium弃用警告DeprecationWarning: find_element_by_* commands are deprecated. Please use find_element()相关的知识,希望对你有一定的参考价值。

警告

DeprecationWarning: find_element_by_* commands are deprecated. Please use find_element() instead
  button=broser.find_element_by_xpath('//span')

弃用警告:不推荐使用 find_element_by_* 命令。 请改用 find_element()
button=broser.find_element_by_xpath(’//span’)

find_element_by_*已被废弃

原来写法

button=broser.find_element_by_xpath('//span')

现在写法

button=broser.find_element(By.XPATH,'//span')

要事先导入就不会报错了

from selenium.webdriver.common.by import By

以上是关于selenium弃用警告DeprecationWarning: find_element_by_* commands are deprecated. Please use find_element()的主要内容,如果未能解决你的问题,请参考以下文章

弃用警告:在 Python 中使用 Geckodriver 和 Selenium 将 setter 用于无头属性而不是 set_headless opts.set_headless(headless=

WebDriverWait 在 Selenium 4 中已弃用

geckodriver 没有为 selenium-cucumber-js 下载

sklearn 的弃用警告

MongoDB 弃用警告

警告 onRowClick 已弃用