You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Browser websocket endpoint which can be used as an argument to <see cref="Puppeteer.ConnectAsync(ConnectOptions)"/>.
97
+
/// Browser websocket endpoint which can be used as an argument to <see cref="Puppeteer.ConnectAsync(ConnectOptions, ILoggerFactory)"/>.
97
98
/// The format is <c>ws://${host}:${port}/devtools/browser/[id]</c>
98
99
/// You can find the <c>webSocketDebuggerUrl</c> from <c>http://${host}:${port}/json/version</c>.
99
100
/// Learn more about the devtools protocol <see href="https://chromedevtools.github.io/devtools-protocol"/>
@@ -102,7 +103,7 @@ public Browser(Connection connection, IBrowserOptions options, Process process,
102
103
publicstringWebSocketEndpoint=>Connection.Url;
103
104
104
105
/// <summary>
105
-
/// Gets the spawned browser process. Returns <c>null</c> if the browser instance was created with <see cref="Puppeteer.ConnectAsync(ConnectOptions)"/> method.
106
+
/// Gets the spawned browser process. Returns <c>null</c> if the browser instance was created with <see cref="Puppeteer.ConnectAsync(ConnectOptions, ILoggerFactory)"/> method.
106
107
/// </summary>
107
108
publicProcessProcess{get;}
108
109
@@ -155,7 +156,7 @@ public async Task<Page> NewPageAsync()
155
156
/// <returns>Task which resolves to an array of all open pages.</returns>
0 commit comments