raise NoSuchDriverException(f"Unable to obtain {service.path} using Selenium Manager; {err}") selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain msedgedriver using Selenium Manager; 'str' object has no attribute 'capabilities'; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location
时间: 2024-04-10 12:29:08 浏览: 173
U.2-SFF-8639-V4.0
根据错误信息,看起来是在使用 Selenium Manager 时出现了问题。错误提示为 "'str' object has no attribute 'capabilities'",意思是一个字符串对象(`str`)没有 `capabilities` 属性。
这个问题可能是由于在使用 Selenium Manager 时传递了一个错误的参数导致的。请确保你正确地初始化了 Selenium Manager,并且传递了正确的参数。
如果问题仍然存在,你可以参考上方提供的错误文档链接,该链接提供了关于该错误的更详细信息和解决方法。
阅读全文