Skip to content

Commit

Permalink
BackAsync needs to configure away false
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed May 18, 2024
1 parent 7101abe commit 49741eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/src/support/Events/EventFiringWebDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ public async Task BackAsync()
{
WebDriverNavigationEventArgs e = new WebDriverNavigationEventArgs(this.parentDriver);
this.parentDriver.OnNavigatingBack(e);
await this.wrappedNavigation.BackAsync();
await this.wrappedNavigation.BackAsync().ConfigureAwait(false);
this.parentDriver.OnNavigatedBack(e);
}
catch (Exception ex)
Expand Down

0 comments on commit 49741eb

Please sign in to comment.