Changing IsNavigationDisabled = false; so that the document is downloaded

var document = await _context.OpenAsync(url, cancel); with IsNavigationDisabled = false returns <html><head></head><html> and not the whole page
This commit is contained in:
Humberto Molina 2023-04-19 01:56:24 -06:00 коммит произвёл GitHub
Родитель e8e47d5b14
Коммит 2e857ccf74
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 182 добавлений и 182 удалений

Просмотреть файл

@ -45,7 +45,7 @@
.WithJs()
.WithDefaultLoader(new LoaderOptions
{
IsNavigationDisabled = true,
IsNavigationDisabled = false,
IsResourceLoadingEnabled = true,
});
_context = BrowsingContext.New(config);