跳至主要内容

selectByAttribute

选择具有特定值的选项。

用法
$(selector).selectByAttribute(attribute, value)
参数
名称类型详情
attribute字符串要选择的选项元素的属性
value字符串数字要选择的选项元素的值
示例
example.html
<select id="selectbox">
<option value="someValue0">uno</option>
<option value="someValue1">dos</option>
<option value="someValue2">tres</option>
<option value="someValue3">cuatro</option>
<option value="someValue4">cinco</option>
<option name="someName5" value="someValue5">seis</option>
</select>
selectByAttribute.js
it('Should demonstrate the selectByAttribute command', async () => {
const selectBox = await $('#selectbox');
const value = await selectBox.getValue();
console.log(value); // returns "someValue0"

await selectBox.selectByAttribute('value', 'someValue3');
console.log(await selectBox.getValue()); // returns "someValue3"

await selectBox.selectByAttribute('name', 'someName5');
console.log(await selectBox.getValue()); // returns "someValue5"
});

欢迎!我怎样才能帮助您?

WebdriverIO AI Copilot