在selenium最新版本4.3.0中, 使用之前的find_element_by_id会报错
AttributeError: 'WebDriver' object has no attribute 'find_element_by_id'
Ctrl+点击find_element,查看代码
最新版本,改为了driver.find_element(By.ID, ‘foo’)
在自己的代码中修改,发现By会被pycharm下划线提示报错,再次查看代码
发现需要import By文章来源:https://www.toymoban.com/news/detail-544573.html
再次修改自己的代码,运行通过文章来源地址https://www.toymoban.com/news/detail-544573.html
到了这里,关于selenium4.3.0模块中的find_element_by_id方法无法使用,改用driver.find_element(by=By.ID, value=None)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!