public function JavascriptTest::testDragDrop in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/driver-testsuite/tests/Js/JavascriptTest.php \Behat\Mink\Tests\Driver\Js\JavascriptTest::testDragDrop()
File
- vendor/
behat/ mink/ driver-testsuite/ tests/ Js/ JavascriptTest.php, line 21
Class
Namespace
Behat\Mink\Tests\Driver\JsCode
public function testDragDrop() {
$this
->getSession()
->visit($this
->pathTo('/js_test.html'));
$webAssert = $this
->getAssertSession();
$draggable = $webAssert
->elementExists('css', '#draggable');
$droppable = $webAssert
->elementExists('css', '#droppable');
$draggable
->dragTo($droppable);
$this
->assertEquals('Dropped!', $this
->getAssertSession()
->elementExists('css', 'p', $droppable)
->getText());
}