我在nightwatch.js中很新,我想检查鼠标的当前位置,有没有办法看到鼠标当前的位置?目前我正在使用
client.getLocation("#myId", function (result) {
console.log(result.x);
console.log(result.x);
});
但是上面的代码给出了#myId元素的位置,如果我使用下面的代码。
client.moveToElement("#myId", 250, 70, function (result) {
console.log(result.status);
});
执行上述功能后,我的光标将从#xid元素的250像素移动到x轴,从70像素移动到y轴。
但我如何检测鼠标的以前的位置?
答案 0 :(得分:0)
只需记住您将其移动到的元素的位置即可。在Python和Chrome中,鼠标在窗口中间开始,也在调整大小后启动。