| 575 | } |
| 576 | |
| 577 | bool 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 | |
| 583 | bool Browser::Wait(const std::string& page_load_strategy) { |
| 584 | LOG(TRACE) << "Entering Browser::Wait"; |
no outgoing calls
no test coverage detected