You are here

public function NodeElement::keyDown in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/behat/mink/src/Element/NodeElement.php \Behat\Mink\Element\NodeElement::keyDown()

Pressed down specific keyboard key.

Parameters

string|int $char could be either char ('b') or char-code (98):

string $modifier keyboard modifier (could be 'ctrl', 'alt', 'shift' or 'meta'):

File

vendor/behat/mink/src/Element/NodeElement.php, line 325

Class

NodeElement
Page element node.

Namespace

Behat\Mink\Element

Code

public function keyDown($char, $modifier = null) {
  $this
    ->getDriver()
    ->keyDown($this
    ->getXpath(), $char, $modifier);
}