Skip to content

Commit

Permalink
[ie] Fixed typos in logged messages (#13120)
Browse files Browse the repository at this point in the history
  • Loading branch information
icnocop authored Nov 9, 2023
1 parent eb82278 commit 591f849
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/iedriver/BrowserFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -568,13 +568,13 @@ bool BrowserFactory::AttachToBrowserUsingActiveAccessibility
} else {
// If we're in edge_ie_mode, we need to look for different windows
if (this->ignore_process_match_) {
LOG(TRACE) << "Finding windonw handle for IE Mode on Edge, "
LOG(TRACE) << "Finding window handle for IE Mode on Edge, "
<< "ignoring process id match. This assumes only one "
<< "Edge instance is running on the host.";
::EnumWindows(&BrowserFactory::FindEdgeWindowIgnoringProcessMatch,
reinterpret_cast<LPARAM>(process_window_info));
} else {
LOG(TRACE) << "Finding windonw handle for IE Mode on Edge";
LOG(TRACE) << "Finding window handle for IE Mode on Edge";
::EnumWindows(&BrowserFactory::FindEdgeWindow,
reinterpret_cast<LPARAM>(process_window_info));

Expand Down

0 comments on commit 591f849

Please sign in to comment.