Skip to content

Commit

Permalink
Removing calls to isFocusable atom from IE driver
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Dec 31, 2018
1 parent 95e31e4 commit f82f8ef
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions cpp/iedriver/CommandHandlers/SendKeysCommandHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -958,10 +958,6 @@ bool SendKeysCommandHandler::VerifyPageHasFocus(BrowserHandle browser_wrapper) {
}

bool SendKeysCommandHandler::WaitUntilElementFocused(ElementHandle element_wrapper) {
if (element_wrapper->IsFocusable()) {
return true;
}

// Check we have focused the element.
CComPtr<IHTMLElement> element = element_wrapper->element();
bool has_focus = false;
Expand Down

0 comments on commit f82f8ef

Please sign in to comment.