|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
最近在学python的爬虫 可是在使用selenium爬取动态网页遇到了下面的错误(使用的webdriver是edge):
- Traceback (most recent call last):
- File "<pyshell#8>", line 1, in <module>
- dirver.get("网址")
- File "D:\python\Python\Python310-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 442, in get
- self.execute(Command.GET, {'url': url})
- File "D:\python\Python\Python310-32\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 430, in execute
- self.error_handler.check_response(response)
- File "D:\python\Python\Python310-32\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 247, in check_response
- raise exception_class(message, screen, stacktrace)
- selenium.common.exceptions.WebDriverException: Message: unknown error: cannot determine loading status
- from unknown error: missing or invalid columnNumber
- (Session info: MicrosoftEdge=102.0.1245.44)
- Stacktrace:
- Backtrace:
- Microsoft::Applications::Events::EventProperties::unpack [0x00DF8B23+58371]
- Microsoft::Applications::Events::ISemanticContext::SetTicket [0x00CD3901+1430161]
- Microsoft::Applications::Events::ILogConfiguration::operator* [0x00AB353E+3502]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA2167+63143]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA188A+60874]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA6A61+81825]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA6FBC+83196]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA6D98+82648]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA6435+80245]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA55CD+76557]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA59A8+77544]
- Microsoft::Applications::Events::IModule::Teardown [0x00AAF94B+118411]
- Microsoft::Applications::Events::ILogConfiguration::operator* [0x00AB8BFB+25707]
- Microsoft::Applications::Events::ILogConfiguration::operator* [0x00ABAF70+34784]
- Microsoft::Applications::Events::IModule::Teardown [0x00AA5C72+78258]
- Microsoft::Applications::Events::ILogConfiguration::operator* [0x00AB8931+24993]
- Microsoft::Applications::Events::GUID_t::GUID_t [0x00AFF37C+239644]
- Microsoft::Applications::Events::GUID_t::GUID_t [0x00AF1136+181718]
- Microsoft::Applications::Events::GUID_t::GUID_t [0x00AD4466+63750]
- Microsoft::Applications::Events::GUID_t::GUID_t [0x00AD51F6+67222]
- Microsoft::Applications::Events::ILogManager::DispatchEventBroadcast [0x00FF1335+617557]
- Microsoft::Applications::Events::ILogManager::DispatchEventBroadcast [0x00F71273+93075]
- Microsoft::Applications::Events::ILogManager::DispatchEventBroadcast [0x00F70F17+92215]
- Microsoft::Applications::Events::ILogManager::DispatchEventBroadcast [0x00F74FAA+108746]
- Microsoft::Applications::Events::ILogManager::DispatchEventBroadcast [0x00F7195A+94842]
- Microsoft::Applications::Events::ISemanticContext::SetTicket [0x00CE55E7+1503095]
- Microsoft::Applications::Events::ISemanticContext::SetTicket [0x00CEF618+1544104]
- Microsoft::Applications::Events::ISemanticContext::SetTicket [0x00CEF7A2+1544498]
- Microsoft::Applications::Events::ISemanticContext::SetTicket [0x00D01E02+1619858]
- BaseThreadInitThunk [0x754DFA29+25]
- RtlGetAppContainerNamedObjectPath [0x772A7A7E+286]
- RtlGetAppContainerNamedObjectPath [0x772A7A4E+238]
复制代码
这句错误我认为大抵上就是关键:
- selenium.common.exceptions.WebDriverException: Message: unknown error: cannot determine loading status
- from unknown error: missing or invalid columnNumber
复制代码
可是在网上也没查到相关信息 基本上是这段不一样- missing or invalid columnNumber
复制代码
希望有大佬可以帮忙解决一下 |
|