Ejemplo n.º 1
0
 /**
  * @see Behat\Mink\Driver\DriverInterface::keyPress()
  *
  * @throws  Behat\Mink\Exception\UnsupportedDriverActionException   action is not supported by this driver
  */
 public function keyPress($xpath, $char, $modifier = null)
 {
     $this->keyDownModifier($modifier);
     $this->browser->keyPress(SeleniumLocator::xpath($xpath), $char);
     $this->keyUpModifier($modifier);
 }