UNPKG

webdriverio

Version:

Next-gen browser and mobile automation test framework for Node.js

28 lines (27 loc) 898 B
/** * Send a sequence of key strokes to an element after the input has been cleared before. If the element doesn't need * to be cleared first then use [`addValue`](/docs/api/element/addValue). * * :::info * * If you like to use special characters, e.g. to copy and paste a value from one input to another, use the * [`keys`](/docs/api/browser/keys) command. * * ::: * * <example> :setValue.js it('should set value for a certain element', async () => { const input = await $('.input'); await input.setValue('test') await input.setValue(123) console.log(await input.getValue()); // outputs: '123' }); * </example> * * @alias element.setValue * @param {string | number} value value to be added * */ export declare function setValue(this: WebdriverIO.Element, value: string | number): Promise<void>; //# sourceMappingURL=setValue.d.ts.map