setValue
在输入被清除之前,向元素发送一系列按键。如果元素不需要先清除,则使用addValue
。
信息
如果您想使用特殊字符,例如将值从一个输入复制粘贴到另一个输入,请使用keys
命令。
用法
$(selector).setValue(value)
参数
名称 | 类型 | 详情 |
---|---|---|
value | string , number | 要添加的值 |
示例
setValue.js
it('should set value for a certain element', async () => {
const input = await $('.input');
await input.setValue('test')
await input.setValue(123)
console.log(await input.getValue()); // outputs: '123'
});