selectByIndex

Select option with a specific index.

Usage

1
client.selectByIndex(selectElem,index).then(callback);

Parameters

Param Type Details
selectElem String select element that contains the options
index Number option index

Example

example.html
1
2
3
4
5
6
7
8
<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>
selectByIndex.js
1
2
3
4
5
6
7
8
9
10
11
12
client
.getValue('#selectbox')
.then(function(value) {
console.log(value);
// returns "someValue0"
})
.selectByIndex('#selectbox', 4)
.getValue('#selectbox')
.then(function(value) {
console.log(value);
// returns "someValue4"
});

Uses