跳至主要内容

getValue

获取由给定选择器找到的<textarea><select>或文本<input>的值。如果通过给定选择器找到多个元素,则返回一个值数组。对于复选框或单选按钮类型的输入,请使用isSelected。

用法
$(selector).getValue()
示例
index.html
<input type="text" value="John Doe" id="username">
getValue.js
it('should demonstrate the getValue command', async () => {
const inputUser = await $('#username');
const value = await inputUser.getValue();
console.log(value); // outputs: "John Doe"
});

欢迎!我如何能帮到您?

WebdriverIO AI Copilot