You are here

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

Checks whether current node is visible on page.

Return value

Boolean

File

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

Class

NodeElement
Page element node.

Namespace

Behat\Mink\Element

Code

public function isVisible() {
  return (bool) $this
    ->getDriver()
    ->isVisible($this
    ->getXpath());
}