Closed imiric closed 2 years ago
Currently this is a blocker for our internal performance testing as everything is (presently, but will not always be) routed through basic auth.
Hi @unlikelyzero, basic auth support will be released in the upcoming v0.2.0, scheduled for later this week, or you can use it now by building the extension from main
.
The
httpCredentials
BrowserContext
option doesn't seem to be working, and HTTP basic auth in general seems to be partially implemented.Version: de8c9d2
Steps to reproduce
Run the following script:
On de8c9d2 (#202) this fails with:
Commenting out the
navigation interrupted by another one
line, shows the browser window and credential prompt, and the above401
error is logged.Implementation suggestions
This seems to require request interception with the
Fetch
domain, which is partially implemented here. What's missing is a call tofetch.ContinueWithAuth()
.