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")
标签:WebDriver,elements,no,attribute,selenium,find,id From: https://www.cnblogs.com/harsonlee/p/16975829.html