.window.getSize() 建议编辑
获取当前窗口的尺寸(以像素为单位)。
用法
.window.getSize([callback])
示例
module.exports = {
'get current window size': function (browser) {
browser.window.getSize(function (result) {
console.log('Size of current window:', result.value.width, result.value.height);
});
},
'get current window size using ES6 async/await': async function (browser) {
const {width, height} = await browser.window.getSize();
console.log('Size of current window:', width, height);
}
}
参数
名称 | 类型 | 描述 |
---|---|---|
回调 可选 |
函数 | 使用结果值调用的回调函数。 |
返回值
类型 | 描述 |
---|---|
* | 当前窗口的尺寸。 |