Skip to content

Commit

Permalink
Webkit e2e: fix flaky shift+click test (#53564)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellatrix authored Aug 11, 2023
1 parent 1bb7014 commit 7050a7b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions test/e2e/specs/editor/various/multi-block-selection.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1209,13 +1209,15 @@ test.describe( 'Multi-block selection', () => {
.getByRole( 'region', { name: 'Editor content' } )
.getByText( '1', { exact: true } );
const strongBox = await strongText.boundingBox();
await strongText.click( {
// Ensure clicking on the right half of the element.
position: { x: strongBox.width, y: strongBox.height / 2 },
modifiers: [ 'Shift' ],
// "<p>" intercepts pointer events in WebKit.
force: true,
} );
// Focus and move the caret to the end.
await editor.canvas
.getByRole( 'document', { name: 'Paragraph block' } )
.filter( { hasText: '1[' } )
.click( {
// Ensure clicking on the right half of the element.
position: { x: strongBox.width - 1, y: strongBox.height / 2 },
modifiers: [ 'Shift' ],
} );
await page.keyboard.press( 'Backspace' );

// Ensure selection is in the correct place.
Expand Down

0 comments on commit 7050a7b

Please sign in to comment.