raise exception_class(message, screen, stacktrace) selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"[id="camera"]"} (Session info: chrome=114.0.5735.91)
时间: 2023-08-27 11:17:54 浏览: 111
Linux_network_kernel_stack.rar_ip kernel stack_site:www.pudn.com
根据你的描述,这个错误是由 Selenium 抛出的。它指出在页面中无法找到一个 id 为 "camera" 的元素。可能的原因是该元素不存在于页面中,或者在查找该元素时使用的选择器不正确。你可以检查一下页面的 HTML 代码,确认一下该元素是否存在,以及它的 id 是否为 "camera"。另外,你也可以尝试使用其他选择器来查找该元素,比如 xpath 或者 class name。
阅读全文