量角器测试 - 如何将鼠标位置重置为默认原点
Protractor Test - How to Reset Mouse Location to Default Origin
我正在使用量角器进行端到端测试,并且我正在使用不止一个测试规范。
从一个测试规范到另一个测试规范,我注意到我的鼠标留在了上一个规范的最后位置。
我希望鼠标从每个规格的默认位置开始。
我相信会是左上角。
目标是我知道我的鼠标在每次测试开始时从哪里开始,我可以相应地调整我的测试,并且每次测试都将从鼠标在相同的基线开始。
例如:
//Assume this is the first spec
browser.actions().mouseMove(x: 15, y: 25).perform().then(function() {
//code
});
//If this is in another spec, this mouseMove will start from the x: 15 & y: 25 location
browser.actions().mouseMove(x: 153, y: 125).perform().then(function() {
//code
});
在每次测试之前或之后手动将鼠标移动到“0, 0”:
browser.actions().mouseMove({x: 0, y: 0}).perform();
我正在使用量角器进行端到端测试,并且我正在使用不止一个测试规范。 从一个测试规范到另一个测试规范,我注意到我的鼠标留在了上一个规范的最后位置。
我希望鼠标从每个规格的默认位置开始。 我相信会是左上角。
目标是我知道我的鼠标在每次测试开始时从哪里开始,我可以相应地调整我的测试,并且每次测试都将从鼠标在相同的基线开始。
例如:
//Assume this is the first spec
browser.actions().mouseMove(x: 15, y: 25).perform().then(function() {
//code
});
//If this is in another spec, this mouseMove will start from the x: 15 & y: 25 location
browser.actions().mouseMove(x: 153, y: 125).perform().then(function() {
//code
});
在每次测试之前或之后手动将鼠标移动到“0, 0”:
browser.actions().mouseMove({x: 0, y: 0}).perform();