public function Browser::drag in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/jcalderonzumba/gastonjs/src/Browser/Browser.php \Zumba\GastonJS\Browser\Browser::drag()
Drag an element to a another in a given page
Parameters
$pageId:
$fromId:
$toId:
Return value
mixed
File
- vendor/
jcalderonzumba/ gastonjs/ src/ Browser/ Browser.php, line 84
Class
- Browser
- Class Browser @package Zumba\GastonJS
Namespace
Zumba\GastonJS\BrowserCode
public function drag($pageId, $fromId, $toId) {
return $this
->command('drag', $pageId, $fromId, $toId);
}