self.driver.find_element_By_ID('su').click() AttributeError: 'WebDriver' object has no attribute 'find_element_By_ID'
时间: 2023-08-26 12:29:30 浏览: 76
webdriver不能启动浏览器,报module ‘selenium.webdriver’ has no attribute”问题解决办法
5星 · 资源好评率100%
这个错误是因为 `find_element_By_ID` 方法不存在。正确的方法名是 `find_element_by_id`。注意其中的 `_` 是小写的。
因此,您需要将代码修改为:
```
self.driver.find_element_by_id('su').click()
```
这样就可以通过 ID 查找到元素并进行点击操作了。如果要使用其他方式查找元素,只需要将 `by_id` 修改为对应的方式即可。
阅读全文