We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a0afcc commit 39420b7Copy full SHA for 39420b7
.github/actions/auth/src/index.ts
@@ -43,7 +43,9 @@ export default async function () {
43
core.info("Navigating to login page");
44
await page.goto(loginUrl);
45
46
- // Check for a login form
+ // Check for a login form.
47
+ // If no login form is found, then either HTTP Basic auth succeeded, or the page does not require authentication.
48
+ core.info("Checking for login form");
49
const [usernameField, passwordField] = await Promise.all([
50
page.getByLabel(/username/i).first(),
51
page.getByLabel(/password/i).first(),
0 commit comments