设置当前窗口的位置 - 将窗口移动到所选位置。

用法

                    .window.setPosition(x, y, [callback])
                

示例

module.exports = {
  'set current window position': function (browser) {
     // Move the window to the top left of the primary monitor
     browser.window.setPosition(0, 0, function (result) {
       console.log('window moved successfully');
     });
  },

  'set current window position using ES6 async/await': async function (browser) {
     // Move the window to the top left of the primary monitor
     await browser.window.setPosition(0, 0);
  }
}

参数

名称 类型 描述
x 数字

窗口左上角的新 x 坐标。

y 数字

窗口左上角的新 y 坐标。

回调函数
可选
函数

命令完成后调用的可选回调函数。

另请参见