Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions tests/e2e-playwright/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,9 @@ def _(
open_button.click()
lrt_data = lrt.value.json()
lrt_data = lrt_data["data"]
if is_product_billable:
# Open project with default resources
page.get_by_test_id("openWithResources").click()
with log_context(
logging.INFO,
"Copying template data",
Expand Down Expand Up @@ -489,9 +492,9 @@ def wait_for_done(response):
...
else:
open_button.click()
if is_product_billable:
# Open project with default resources
page.get_by_test_id("openWithResources").click()
if is_product_billable:
# Open project with default resources
page.get_by_test_id("openWithResources").click()
project_data = response_info.value.json()
assert project_data
project_uuid = project_data["data"]["uuid"]
Expand Down
Loading