Skip to content

Commit

Permalink
Fix for gh-api data source check.
Browse files Browse the repository at this point in the history
  • Loading branch information
antip00 committed Oct 2, 2024
1 parent 0a61ea5 commit 922c475
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/testflows/steps/dashboards/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,12 @@ def open_dashboard_view(self, dashboard_name):
def open_dashboards_view(self, wait_dashboard_name="clickhouse dashboard"):
"""Open dashboards view and wait it to be loaded."""
with When("I go to dashboards endpoint"):
open_dashboards_endpoint()
with delay():
open_dashboards_endpoint()

with And("I wait submit button to be clickable"):
wait_dashboard(dashboard_name=wait_dashboard_name)
with delay():
wait_dashboard(dashboard_name=wait_dashboard_name)


@TestStep(When)
Expand Down

0 comments on commit 922c475

Please sign in to comment.