fix(firefox): round down mouse coordinates (#10483)

This commit is contained in:
Joel Einbinder 2021-11-23 02:55:32 -05:00 committed by GitHub
parent 7d3672899f
commit 6d3bb458f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 8 deletions

View File

@ -113,8 +113,8 @@ export class RawMouseImpl implements input.RawMouse {
type: 'mousemove',
button: 0,
buttons: toButtonsMask(buttons),
x,
y,
x: Math.floor(x),
y: Math.floor(y),
modifiers: toModifiersMask(modifiers)
});
}
@ -124,8 +124,8 @@ export class RawMouseImpl implements input.RawMouse {
type: 'mousedown',
button: toButtonNumber(button),
buttons: toButtonsMask(buttons),
x,
y,
x: Math.floor(x),
y: Math.floor(y),
modifiers: toModifiersMask(modifiers),
clickCount
});
@ -136,8 +136,8 @@ export class RawMouseImpl implements input.RawMouse {
type: 'mouseup',
button: toButtonNumber(button),
buttons: toButtonsMask(buttons),
x,
y,
x: Math.floor(x),
y: Math.floor(y),
modifiers: toModifiersMask(modifiers),
clickCount
});
@ -149,8 +149,8 @@ export class RawMouseImpl implements input.RawMouse {
await this._client.send('Page.dispatchWheelEvent', {
deltaX,
deltaY,
x,
y,
x: Math.floor(x),
y: Math.floor(y),
deltaZ: 0,
modifiers: toModifiersMask(modifiers)
});

View File

@ -164,3 +164,13 @@ it('should tween mouse movement', async ({ page, browserName, isAndroid }) => {
[200, 300]
]);
});
it('should always round down', async ({ page, browserName, isAndroid }) => {
await page.evaluate(() => {
document.addEventListener('mousedown', event => {
window['result'] = [event.clientX, event.clientY];
});
});
await page.mouse.click(50.1, 50.9);
expect(await page.evaluate('result')).toEqual([50, 50]);
});