choo121600 commented on code in PR #59374:
URL: https://github.com/apache/airflow/pull/59374#discussion_r2616720430
##########
airflow-core/src/airflow/ui/tests/e2e/pages/LoginPage.ts:
##########
@@ -84,6 +84,9 @@ export class LoginPage extends BasePage {
await this.maximizeBrowser();
await this.navigateTo(LoginPage.loginUrl);
+
+ // Wait for login form to be fully loaded (especially important for first
test run)
+ await this.usernameInput.waitFor({ state: "visible", timeout: 120_000 });
Review Comment:
I think you can try the command below:
```
breeze testing ui-e2e-tests --test-pattern "dags-list.spec.ts"
```
If there are no issues there, we can improve this part. :)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]