鼠标
鼠标类在相对于视窗左上角的主框架 CSS 像素中运行。
每个 page
对象都有自己的鼠标,可以通过 page.mouse 访问。
// Using ‘page.mouse’ to trace a 100x100 square.
await page.mouse.move(0, 0);
await page.mouse.down();
await page.mouse.move(0, 100);
await page.mouse.move(100, 100);
await page.mouse.move(100, 0);
await page.mouse.move(0, 0);
await page.mouse.up();
方法
click
在 v1.9 之前添加是 mouse.move()、mouse.down()、mouse.up() 的快捷方式。
用法
await mouse.click(x, y);
await mouse.click(x, y, options);
参数
-
相对于主框架视窗的 X 坐标,以 CSS 像素为单位。
-
相对于主框架视窗的 Y 坐标,以 CSS 像素为单位。
-
options
对象 (可选)
返回
dblclick
在 v1.9 之前添加是 mouse.move()、mouse.down()、mouse.up()、mouse.down() 和 mouse.up() 的快捷方式。
用法
await mouse.dblclick(x, y);
await mouse.dblclick(x, y, options);
参数
-
相对于主框架视窗的 X 坐标,以 CSS 像素为单位。
-
相对于主框架视窗的 Y 坐标,以 CSS 像素为单位。
-
options
对象 (可选)
返回
down
在 v1.9 之前添加分发 mousedown
事件。
用法
await mouse.down();
await mouse.down(options);
参数
options
对象 (可选)-
button
"left" | "right" | "middle" (可选)#默认为
left
。 -
默认为 1。参见 UIEvent.detail。
-
返回
move
在 v1.9 之前添加分发 mousemove
事件。
用法
await mouse.move(x, y);
await mouse.move(x, y, options);
参数
-
相对于主框架视窗的 X 坐标,以 CSS 像素为单位。
-
相对于主框架视窗的 Y 坐标,以 CSS 像素为单位。
-
options
对象 (可选)
返回
up
在 v1.9 之前添加分发 mouseup
事件。
用法
await mouse.up();
await mouse.up(options);
参数
options
对象 (可选)-
button
"left" | "right" | "middle" (可选)#默认为
left
。 -
默认为 1。参见 UIEvent.detail。
-
返回
wheel
在以下版本中添加:v1.15分发 wheel
事件。此方法通常用于手动滚动页面。参见 滚动 以了解滚动页面的其他方法。
注意
如果未处理滚轮事件,可能会导致滚动,此方法在返回之前不会等待滚动完成。
用法
await mouse.wheel(deltaX, deltaY);
参数
返回