'seleniumBase' object has no attribute 'driver'
时间: 2023-10-15 12:04:53 浏览: 113
使用selenium自动控制浏览器找不到Chromedriver问题
This error message suggests that the 'driver' attribute is not available in the 'seleniumBase' object. This could happen if the object has not been properly initialized or if there is an issue with the code that is trying to access the 'driver' attribute.
To resolve this issue, you may need to check your code and ensure that the 'seleniumBase' object is properly initialized before trying to access the 'driver' attribute. You may also need to check that the 'driver' attribute is actually available in the object, and that it has not been deleted or overwritten by other code.
阅读全文