/**
  * {@inheritdoc}
  */
 public function submitForm($xpath)
 {
     $this->browser->submit(SeleniumLocator::xpath(utf8_decode($xpath)));
 }
Beispiel #2
0
 /**
  * @see Behat\Mink\Driver\DriverInterface::dragTo()
  */
 public function dragTo($sourceXpath, $destinationXpath)
 {
     $this->browser->dragAndDropToObject(SeleniumLocator::xpath($sourceXpath), SeleniumLocator::xpath($destinationXpath));
 }