Skip to content

Commit 49741eb

Browse files
committed
BackAsync needs to configure away false
1 parent 7101abe commit 49741eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/support/Events/EventFiringWebDriver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ public async Task BackAsync()
861861
{
862862
WebDriverNavigationEventArgs e = new WebDriverNavigationEventArgs(this.parentDriver);
863863
this.parentDriver.OnNavigatingBack(e);
864-
await this.wrappedNavigation.BackAsync();
864+
await this.wrappedNavigation.BackAsync().ConfigureAwait(false);
865865
this.parentDriver.OnNavigatedBack(e);
866866
}
867867
catch (Exception ex)

0 commit comments

Comments
 (0)