robotframework中导入selenium执行脚本后显示'WebDriver' object has no attribute 'find_elements_by_id'

robotframework中导入selenium执行脚本后显示'WebDriver' object has no attribute 'find_elements_by_id',经检查是selenium版本导致,版本selenium4不支持find_elements_by_id格式,可以采取以下方式解决:

方法1:降低selenium版本为selenium3

pip uninstall selenium

pip  install selenium==3.141.0

方法2:修改脚本为新的格式

driver.find_element(By.ID, "kw").send_keys("hello")

 

posted @ 2022-12-12 13:37  HarsonLee  阅读(1268)  评论(0编辑  收藏  举报