MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / IsBusy

Method IsBusy

cpp/iedriver/Browser.cpp:577–581  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

575}
576
577bool Browser::IsBusy() {
578 VARIANT_BOOL is_busy(VARIANT_FALSE);
579 HRESULT hr = this->browser_->get_Busy(&is_busy);
580 return SUCCEEDED(hr) && is_busy == VARIANT_TRUE;
581}
582
583bool Browser::Wait(const std::string& page_load_strategy) {
584 LOG(TRACE) << "Entering Browser::Wait";

Callers 3

WaitMethod · 0.95
CreateNewBrowserMethod · 0.45
ClickAlertButtonMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected