Przejdź do głównej treści

selectByVisibleText

Wybierz opcję z wyświetlanym tekstem pasującym do argumentu.

Użycie
$(selector).selectByVisibleText(text)
Parametry
NazwaTypSzczegóły
textString, Numbertekst elementu opcji do wybrania
Przykłady
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 value="someValue5">seis</option>
</select>
selectByVisibleText.js
it('demonstrate the selectByVisibleText command', async () => {
const selectBox = await $('#selectbox');
console.log(await selectBox.getText('option:checked')); // returns "uno"
await selectBox.selectByVisibleText('cuatro');
console.log(await selectBox.getText('option:checked')); // returns "cuatro"
})

Welcome! How can I help?

WebdriverIO AI Copilot