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 0541bcc commit 5f7a22dCopy full SHA for 5f7a22d
.github/actions/auth/src/index.ts
@@ -47,7 +47,7 @@ export default async function () {
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(),
+ page.getByLabel(/user ?name/i).first(),
51
page.getByLabel(/password/i).first(),
52
]);
53
const [usernameFieldExists, passwordFieldExists] = await Promise.all([
0 commit comments