You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(e2e): fix selectors and add assertions in sequential multi-signer test
Selector fixes (same as parallel test):
- Remove tab clicks, add .click() before .fill(), use getByLabel() for
the switch state and getByText() to toggle it (input is hidden by CSS)
Logout before sign link:
- The email sign link is for an unauthenticated flow; accessing it
while the admin session is active triggers the new backend error.
Log out via Settings menu before navigating to avoid this.
Validation page assertions:
- After signer01 signs, assert the validation page shows both signers,
with signer02 still in 'Not signed yet' state, proving the sequential
flow held at that point.
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
Copy file name to clipboardExpand all lines: playwright/e2e/multi-signer-sequential.spec.ts
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -41,27 +41,27 @@ test('request signatures from two signers in sequential order', async ({ page })
41
41
awaitpage.getByRole('textbox',{name: 'URL of a PDF file'}).fill('https://raw.githubusercontent.com/LibreSign/libresign/main/tests/php/fixtures/pdfs/small_valid.pdf')
0 commit comments