MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / DisposeAsync

Method DisposeAsync

dotnet/src/webdriver/WebDriver.cs:230–235  ·  view source on GitHub ↗

Asynchronously disposes the WebDriver Instance A task representing the asynchronous dispose operation.

()

Source from the content-addressed store, hash-verified

228 /// </summary>
229 /// <returns>A task representing the asynchronous dispose operation.</returns>
230 public async ValueTask DisposeAsync()
231 {
232 await this.DisposeAsyncCore().ConfigureAwait(false);
233 this.Dispose(false);
234 GC.SuppressFinalize(this);
235 }
236
237 /// <summary>
238 /// Executes JavaScript "asynchronously" in the context of the currently selected frame or window,

Callers

nothing calls this directly

Calls 2

DisposeAsyncCoreMethod · 0.95
DisposeMethod · 0.95

Tested by

no test coverage detected