We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9db793 commit 8ef17f0Copy full SHA for 8ef17f0
1 file changed
tests/e2e/specs/collaboration/fixtures/collaboration-utils.js
@@ -105,7 +105,8 @@ export default class CollaborationUtils {
105
// Retry filling if the page resets during a cold Docker start.
106
await expect( async () => {
107
await page.locator( '#user_login' ).fill( userInfo.username );
108
- await page.locator( '#user_pass' ).fill( userInfo.password );
+ await page.locator( '#user_pass' ).clear();
109
+ await page.locator( '#user_pass' ).pressSequentially( userInfo.password );
110
await expect( page.locator( '#user_pass' ) ).toHaveValue(
111
userInfo.password
112
);
0 commit comments