您不需要多个浏览器,您可以使用带有多个选项卡(或 Puppeteer 所称的页面)的一个浏览器。这是我的示例代码,它解决了您所做的相同事情(将 HTML 转换为 PDF)。它创建一个浏览器实例,该实例被传递给四个进程(可能更多),每个进程都创建和删除自己的页面。
public class PuppeteerSharpSample {
public async Task CreatePdfBatch(IEnumerable<string> urlList)
{
await using var browser = await Puppeteer.LaunchAsync( new LaunchOptions { Headless = true, ExecutablePath ="PathToChromeOrChromium.exe"};).ConfigureAwait(false);
await urlList.ForEachAsync(4, async url =>
{
await PrintPdf(url, browser).ConfigureAwait(false);
})
.ContinueWith(t =>
{
if (t.Exception != null)
{
throw t.Exception;
}
})
.ConfigureAwait(false);
}
private async Task PrintPdf(Browser browser, string Url)
{
await using var page = await browser.NewPageAsync().ConfigureAwait(false);
await page.GoToAsync(url).ConfigureAwait(false);
await page.PdfAsync("pdfFileNameMustBeMadeUniqueOfCourse.pdf").ConfigureAwait(false);
}
}
public static class HelperClass
{
//taken from https://scatteredcode.net/parallel-foreach-async-in-c/
public static Task ForEachAsync<T>(this IEnumerable<T> source, int dop, Func<T, Task> body)
{
async Task AwaitPartition(IEnumerator<T> partition)
{
using (partition)
{
while (partition.MoveNext())
{
await body(partition.Current).ContinueWith(t =>
{
if (t.IsFaulted && t.Exception != null)
{
throw t.Exception;
}
})
.ConfigureAwait(false);
}
}
}
return Task.WhenAll(
Partitioner
.Create(source)
.GetPartitions(dop)
.AsParallel()
.Select(AwaitPartition));
}
}
GetBrowser()
附带说明:如果您的机器上安装了 Chromium(可以是 Chrome、Chromium 或新的 Edge),您也不需要使用。然后你可以只指向 .exe,如上面的代码所示。