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 in parallel multi-signer test
- Remove tab clicks: with only one method (email) enabled the tab bar
is not rendered; clicking by role='tab' would hang or fail
- Add .click() before .fill() on the Email placeholder to trigger
the Vue autocomplete event
- Replace getByRole('switch') with getByLabel(): NcCheckboxRadioSwitch
renders as <input type="checkbox">, not role="switch" (upstream bug)
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
Copy file name to clipboardExpand all lines: playwright/e2e/multi-signer-parallel.spec.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -41,25 +41,25 @@ test('request signatures from two signers in parallel', 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