vatsrahul1001 commented on code in PR #58548:
URL: https://github.com/apache/airflow/pull/58548#discussion_r2571470973


##########
dev/breeze/src/airflow_breeze/commands/common_options.py:
##########
@@ -565,3 +565,110 @@ def _normalize_platform(ctx: click.core.Context, param: 
click.core.Option, value
     callback=_normalize_platform,
     type=BetterChoice(SINGLE_PLATFORMS),
 )
+
+
+# UI E2E Testing Options
+
+option_airflow_ui_base_url = click.option(
+    "--airflow-ui-base-url",
+    help="Base URL for Airflow UI during e2e tests",
+    default="http://localhost:28080";,
+    show_default=True,
+    envvar="AIRFLOW_UI_BASE_URL",
+)
+
+option_browser = click.option(
+    "--browser",
+    help="Browser to use for e2e tests",
+    type=BetterChoice(["chromium", "firefox", "webkit", "all"]),
+    default="chromium",
+    show_default=True,
+)

Review Comment:
   Done



-- 
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]

Reply via email to