I run the code that was working a couple of months ago. But now the code return only the following:
<html><head></head><body></body></html>
The code:
var requester = new DefaultHttpRequester("Chrome/76.0");
requester.SupportsProtocol(ProtocolNames.Https);
var config = Configuration.Default
.WithDefaultLoader(loaderOptions)
.With(imageLoaderService)
.With(_cookieProvider)
.With(requester);
var browsingContext = BrowsingContext.New(config);
All other sites I tried return the full html as usual...
What can be the reason?