You are here

public function NodeElement::focus 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::focus()

Brings focus to element.

File

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

Class

NodeElement
Page element node.

Namespace

Behat\Mink\Element

Code

public function focus() {
  $this
    ->getDriver()
    ->focus($this
    ->getXpath());
}