We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54a4f8e commit b99df02Copy full SHA for b99df02
cpp/iedriver/IECommandExecutor.cpp
@@ -675,6 +675,10 @@ int IECommandExecutor::CreateNewBrowser(std::string* error_message) {
675
this->m_hWnd));
676
677
this->AddManagedBrowser(wrapper);
678
+ bool is_busy = wrapper->IsBusy();
679
+ if (is_busy) {
680
+ LOG(WARN) << "Browser was launched and attached to, but is still busy.";
681
+ }
682
return WD_SUCCESS;
683
}
684
0 commit comments