清空输入框值
清除输入框或文本区域元素的值。在使用此命令之前,请确保可以与元素交互。您无法清除禁用的或处于只读模式的输入元素。
用法
$(selector).clearValue()
示例
clearValue.js
it('should demonstrate the clearValue command', async () => {
const elem = await $('.input')
await elem.setValue('test123')
const value = await elem.getValue()
console.log(value) // returns 'test123'
await elem.clearValue()
value = await elem.getValue()
assert(value === ''); // true
})