/** * * Select option with a specific index. * * :example.html :selectByIndex.js it('Should demonstrate the selectByIndex command', async () => { const selectBox = await $('#selectbox'); console.log(await selectBox.getValue()); // returns "someValue0" await selectBox.selectByIndex(4); console.log(await selectBox.getValue()); // returns "someValue4" }); * * * @alias element.selectByIndexs * @param {number} index option index * @uses protocol/findElementsFromElement, protocol/elementClick * @type action * */ export declare function selectByIndex(this: WebdriverIO.Element, index: number): Promise; //# sourceMappingURL=selectByIndex.d.ts.map