Skip to content

Commit

Permalink
feat: update timeout for geonetwork and mapstore
Browse files Browse the repository at this point in the history
  • Loading branch information
f-necas committed Nov 29, 2024
1 parent 7f8d021 commit c3ecf3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_georchestra_apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_geo_network_webapp(page: Page):
page.goto("/geonetwork/srv/eng/catalog.search")
# page.wait_for_timeout(20000)
screenshot_page(page,"geonetwork")
expect(page.get_by_role("combobox", name="Search")).to_be_visible()
expect(page.get_by_role("combobox", name="Search")).to_be_visible(timeout=20000)

@allure.epic("Web interface")
@allure.feature("geOrchestra")
Expand Down Expand Up @@ -69,4 +69,4 @@ def test_geo_server_webapp(page: Page):
def test_map_store_webapp(page: Page):
page.goto("/mapstore/")
screenshot_page(page,"mapstore")
expect(page.locator("canvas")).to_be_visible()
expect(page.locator("canvas")).to_be_visible(timeout=20000)

0 comments on commit c3ecf3c

Please sign in to comment.