AttributeError: 'WebDriver' object has no attribute 'find_elements_by_css_selector'
时间: 2023-08-27 08:18:24 浏览: 223
Webdriver element selector
这个错误通常是因为 WebDriver 对象没有找到指定的方法。可能原因是你的代码中有一些拼写错误或者你使用的 WebDriver 版本过于老旧,不支持该方法。
你可以尝试检查你的代码中是否正确拼写了该方法名,或者尝试更新你的 WebDriver 版本。同时,也可以尝试使用其他查找元素的方法,比如 find_elements_by_xpath 或者 find_elements_by_tag_name。
阅读全文