当前位置:   article > 正文

Selenium问题解决记录:AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_id‘_webdriver' object has no attribute

webdriver' object has no attribute

1. 问题:

        在selenium元素定位时,出现报错AttributeError: 'WebDriver' object has no attribute 'find_element_by_id'

2.原因:

        由于版本迭代,Selenium在4.3.0版本中移除了find_element_by_*,新版的selenium已经不再使用find_element_by_id方法。

3. 解决办法:

将根据元素定位方式的元素改为大写

实只需要把原来代码中的元素定位方式改成需要的方式,by+后面大写,把_改成.(PS:一定要大写)

eg:
报错代码:

button = browser.find_element_by_id('kw')
修改后的代码:

        将button = browser.find_element_by_id('kw')修改为如下语句button = browser.find_element(By.ID,'kw')

button = browser.find_element(By.ID,'kw')

        再在其代码页的最前端添加下列代码

from selenium.webdriver.common.by import By

4.代码及运行实例

  1. # <editor-fold desc="Description">
  2. #coding=utf-8
  3. from selenium.webdriver.common.by import By
  4. #引用'webdriver'模块
  5. from selenium import webdriver
  6. # </editor-fold>
  7. import time
  8. def main():
  9. #引用谷歌浏览器
  10. b = webdriver.Chrome()
  11. b.get('https://www.baidu.com')
  12. #执行后,输入字符“Selenium”
  13. b.find_element(By.ID, "kw").send_keys("Selenium")
  14. time.sleep(5)
  15. b.quit()
  16. if __name__ == '__main__':
  17. main()

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/717412
推荐阅读
相关标签
  

闽ICP备14008679号