from selenium.common.exceptions import NoSuchElementException
时间: 2024-06-02 21:12:45 浏览: 123
linux 下selenium chrome使用详解
`selenium.common.exceptions.NoSuchElementException` 是一个异常类,当使用 Selenium WebDriver 在网页上查找元素时,如果找不到符合条件的元素,就会抛出这个异常。通常在使用 `find_element_by_*` 系列方法时,如果没有找到元素,会抛出这个异常。
阅读全文