34 lines
1.4 KiB
TypeScript
34 lines
1.4 KiB
TypeScript
|
|
import type { ChainablePromiseElement, DragAndDropCoordinate, DragAndDropOptions } from '../../types.js';
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* Drag an item to a destination element or position.
|
||
|
|
*
|
||
|
|
* :::info
|
||
|
|
*
|
||
|
|
* The functionality of this command highly depends on the way drag and drop is
|
||
|
|
* implemented in your app. If you experience issues please post your example
|
||
|
|
* in [#4134](https://github.com/webdriverio/webdriverio/issues/4134).
|
||
|
|
*
|
||
|
|
* :::
|
||
|
|
*
|
||
|
|
* <example>
|
||
|
|
:example.test.js
|
||
|
|
it('should demonstrate the dragAndDrop command', async () => {
|
||
|
|
const elem = $('#someElem')
|
||
|
|
const target = $('#someTarget')
|
||
|
|
|
||
|
|
// drag and drop to other element
|
||
|
|
await elem.dragAndDrop(target)
|
||
|
|
|
||
|
|
// drag and drop relative from current position
|
||
|
|
await elem.dragAndDrop({ x: 100, y: 200 })
|
||
|
|
})
|
||
|
|
* </example>
|
||
|
|
*
|
||
|
|
* @alias element.dragAndDrop
|
||
|
|
* @param {Element|DragAndDropCoordinate} target destination element or object with x and y properties
|
||
|
|
* @param {DragAndDropOptions=} options dragAndDrop command options
|
||
|
|
* @param {Number=} options.duration how long the drag should take place
|
||
|
|
*/
|
||
|
|
export declare function dragAndDrop(this: WebdriverIO.Element, target: WebdriverIO.Element | ChainablePromiseElement | Partial<DragAndDropCoordinate>, options?: DragAndDropOptions): Promise<void>;
|
||
|
|
//# sourceMappingURL=dragAndDrop.d.ts.map
|