0

我在 C# 中使用 PuppeteerSharp。

我想使用await page.GoToAsync(localPath);但遇到以下异常:

Protocol error (Page.navigate): Cannot navigate to invalid URL

如何支持浏览本地路径而不是 HTTPS?

4

1 回答 1

0

对于本地路径,需要使用如下文件协议:

await page.GoToAsync("file://" + Path.Combine(context.FunctionAppDirectory, "www", "index.html"));
于 2021-06-10T03:06:42.663 回答