Asynchronously disposes the WebDriver Instance A task representing the asynchronous dispose operation.
()
| 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, |
nothing calls this directly
no test coverage detected