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