getSize
获取 DOM 元素的宽度和高度。
用法
$(selector).getSize(prop)
参数
名称 | 类型 | 详情 |
---|---|---|
prop 可选 | 字符串 | 要接收的尺寸 [可选](“width” 或 “height”) |
示例
getSize.js
it('should demonstrate the getSize command', async () => {
await browser.url('http://github.com')
const logo = await $('.octicon-mark-github')
const size = await logo.getSize()
console.log(size) // outputs: { width: 32, height: 32 }
const width = await logo.getSize('width')
console.log(width) // outputs: 32
const height = await logo.getSize('height')
console.log(height) // outputs: 32
})