首页 > 编程语言 >Python_Selenium报错:AttributeError: 'WebDriver' object has no attribute 'find_element_b

Python_Selenium报错:AttributeError: 'WebDriver' object has no attribute 'find_element_b

时间:2023-02-23 00:14:18浏览次数:39  
标签:WebDriver name attribute element 报错 find

写法:self.driver.find_element_by_name("wd"),会报错_AttributeError: 'WebDriver' object has no attribute 'find_element_by_name'

 

 

查了下资料

原因:`find_element_*`已经被移除了

解决方法:换个写法

find_element_by_name("wd")换成
find_element('name', "wd")

同样的方法也可以用在id...
结果如下:

 


 

 

标签:WebDriver,name,attribute,element,报错,find
From: https://www.cnblogs.com/rychh/p/17146472.html

相关文章