selectByIndex

Select option with a specific index.

Usage

1
browser.selectByIndex(selector,index);

Parameters

Param Type Details
selector 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
it('should demonstrate the selectByIndex command', function () {
var selectBox = $('#selectbox');
console.log(selectBox.getValue()); // returns "someValue0"

selectBox.selectByIndex(4);
console.log(selectBox.getValue()); // returns "someValue4"
});

Uses