Mercurial > hg > isophonics-drupal-site
view vendor/jcalderonzumba/mink-phantomjs-driver/src/MouseTrait.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Zumba\Mink\Driver; use Behat\Mink\Exception\DriverException; /** * Class MouseTrait * @package Zumba\Mink\Driver */ trait MouseTrait { /** * Generates a mouseover event on the given element by xpath * @param string $xpath * @throws DriverException */ public function mouseOver($xpath) { $element = $this->findElement($xpath, 1); $this->browser->hover($element["page_id"], $element["ids"][0]); } /** * Clicks if possible on an element given by xpath * @param string $xpath * @return mixed * @throws DriverException */ public function click($xpath) { $elements = $this->findElement($xpath, 1); $this->browser->click($elements["page_id"], $elements["ids"][0]); } /** * {@inheritdoc} */ /** * Double click on element found via xpath * @param string $xpath * @throws DriverException */ public function doubleClick($xpath) { $elements = $this->findElement($xpath, 1); $this->browser->doubleClick($elements["page_id"], $elements["ids"][0]); } /** * Right click on element found via xpath * @param string $xpath * @throws DriverException */ public function rightClick($xpath) { $elements = $this->findElement($xpath, 1); $this->browser->rightClick($elements["page_id"], $elements["ids"][0]); } }