Skip to content

Commit 82715b9

Browse files
[dotnet] Quit fails after not successful new session (#14242)
* [dotnet] do not execute Quit command when sessionId is not available If new session creation fails a Quit() method is called which calls Dispose and then Quit command, unfortunately in this case session is still not created and it throws null reference exception and this hides the actual exception * [dotnet] ignore exceptions from Quit when new session fails In order to propagate the original error when session fails, surround the Quit call in try/catch in case it also throws an exception. --------- Co-authored-by: Nikolay Borisenko <[email protected]>
1 parent 7951238 commit 82715b9

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

dotnet/src/webdriver/WebDriver.cs

+13-3
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,15 @@ protected WebDriver(ICommandExecutor executor, ICapabilities capabilities)
6262
}
6363
catch (Exception)
6464
{
65-
// Failed to start driver session, disposing of driver
66-
this.Quit();
65+
try
66+
{
67+
// Failed to start driver session, disposing of driver
68+
this.Quit();
69+
}
70+
catch
71+
{
72+
// Ignore the clean-up exception. We'll propagate the original failure.
73+
}
6774
throw;
6875
}
6976

@@ -703,7 +710,10 @@ protected virtual void Dispose(bool disposing)
703710
{
704711
try
705712
{
706-
this.Execute(DriverCommand.Quit, null);
713+
if (this.sessionId is not null)
714+
{
715+
this.Execute(DriverCommand.Quit, null);
716+
}
707717
}
708718
catch (NotImplementedException)
709719
{

0 commit comments

Comments
 (0)