Update login page CSS selectors in e2e test

This commit is contained in:
Ryan Richard 2022-05-05 13:56:38 -07:00
parent 00d68845c4
commit 6e6e1f4add
1 changed files with 3 additions and 3 deletions

View File

@ -1080,9 +1080,9 @@ func TestE2EFullIntegration_Browser(t *testing.T) { // nolint:gocyclo
regex := regexp.MustCompile(`\A` + downstream.Spec.Issuer + `/login.+`)
browsertest.WaitForURL(t, page, regex)
usernameSelector := "input#username"
passwordSelector := "input[type='password']"
loginButtonSelector := "button#submit"
usernameSelector := "#username"
passwordSelector := "#password"
loginButtonSelector := "#submit"
browsertest.WaitForVisibleElements(t, page, usernameSelector, passwordSelector, loginButtonSelector)
// Fill in the username and password and click "submit".