You are here

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

Unchecks current node if it's a checkbox field.

File

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

Class

NodeElement
Page element node.

Namespace

Behat\Mink\Element

Code

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