We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ef17f0 commit 0a3d31eCopy full SHA for 0a3d31e
1 file changed
tests/e2e/specs/collaboration/fixtures/collaboration-utils.js
@@ -105,8 +105,7 @@ 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' ).clear();
109
- await page.locator( '#user_pass' ).pressSequentially( userInfo.password );
+ await page.locator( '#user_pass' ).fill( userInfo.password, { force: true } );
110
await expect( page.locator( '#user_pass' ) ).toHaveValue(
111
userInfo.password
112
);
0 commit comments