๐ฌ .setClipboard(value, options)
This is a proposal for functionality that may be implemented in the future.
TODO: Description here.
Usage
device.setClipboard(value, options)
Parameters
value(String):options(Object?):options.contentType(String?): TODO: Description here.options.label(String?): TODO: Description here.
Returns
Promise: TODO: Description here.
Support
| Platform | Supported |
|---|---|
| iOS | Unknown |
| Android | Unknown |
| Web | Unknown |
Examples
Set clipboard contents:
const { device } = require("appdriver");
(async () => {
await device.setClipboard("Hello World!");
})();