Skip to content

Commit

Permalink
🚧 Trying to understand what the problem is with the file upload
Browse files Browse the repository at this point in the history
  • Loading branch information
SilviaAmAm committed Apr 3, 2024
1 parent 67afaf5 commit c671649
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/openforms/tests/e2e/test_file_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@ def setUpTestData():
await expect(uploaded_file).to_be_visible()

await page.get_by_role("button", name="Volgende").click()

# Debugging to understand what is going on in flaky test
summary_page_header = page.get_by_text("Controleer en bevestig")
await expect(summary_page_header).to_be_visible()
error_page_header = page.get_by_text("Oeps!")
await expect(error_page_header).not_to_be_visible()

await page.get_by_role("button", name="Verzenden").click()
await expect(
page.get_by_text("Een moment geduld", exact=False)
Expand Down

0 comments on commit c671649

Please sign in to comment.