Flaky Test: BrowserFlowTest.testAlternativeNonInteractiveExecutorInSubflow()

Closes #34273

Signed-off-by: Douglas Palmer <dpalmer@redhat.com>
This commit is contained in:
Douglas Palmer 2024-10-23 14:42:51 -07:00 committed by Alexander Schwartz
parent 1dc3b08ba8
commit fd1dd49ade

View file

@ -21,7 +21,7 @@ public class LoginUsernameOnlyPage extends LoginPage {
usernameInput.clear();
usernameInput.sendKeys(username);
submitButton.click();
UIUtils.clickLink(submitButton);
}
public String getUsernameError() {
@ -34,7 +34,7 @@ public class LoginUsernameOnlyPage extends LoginPage {
// Click button without fill anything
public void clickSubmitButton() {
submitButton.click();
UIUtils.clickLink(submitButton);
}
/**