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
Copy file name to clipboardExpand all lines: lib/PuppeteerSharp/IBrowserFetcher.cs
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,12 @@ namespace PuppeteerSharp
8
8
{
9
9
/// <summary>
10
10
/// BrowserFetcher can download and manage different versions of Chromium.
11
-
/// BrowserFetcher operates on revision strings that specify a precise version of Chromium, e.g. 533271. Revision strings can be obtained from omahaproxy.appspot.com.
12
11
/// </summary>
13
12
/// <example>
14
13
/// Example on how to use BrowserFetcher to download a specific version of Chromium and run Puppeteer against it:
15
14
/// <code>
16
15
/// var browserFetcher = Puppeteer.CreateBrowserFetcher();
17
-
/// var revisionInfo = await browserFetcher.DownloadAsync("533271");
16
+
/// var revisionInfo = await browserFetcher.DownloadAsync(BrowserData.Chrome.DefaultBuildId);
0 commit comments