Skip to content

Commit 0a3d31e

Browse files
committed
Try forcing it.
1 parent 8ef17f0 commit 0a3d31e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/e2e/specs/collaboration/fixtures/collaboration-utils.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@ export default class CollaborationUtils {
105105
// Retry filling if the page resets during a cold Docker start.
106106
await expect( async () => {
107107
await page.locator( '#user_login' ).fill( userInfo.username );
108-
await page.locator( '#user_pass' ).clear();
109-
await page.locator( '#user_pass' ).pressSequentially( userInfo.password );
108+
await page.locator( '#user_pass' ).fill( userInfo.password, { force: true } );
110109
await expect( page.locator( '#user_pass' ) ).toHaveValue(
111110
userInfo.password
112111
);

0 commit comments

Comments
 (0)