You are here

public function Browser::isVisible in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Browser/Browser.php \Zumba\GastonJS\Browser\Browser::isVisible()

Tells whether an element on a page is visible or not

Parameters

$pageId:

$elementId:

Return value

bool

Overrides BrowserPageElementTrait::isVisible

File

vendor/jcalderonzumba/gastonjs/src/Browser/Browser.php, line 64

Class

Browser
Class Browser @package Zumba\GastonJS

Namespace

Zumba\GastonJS\Browser

Code

public function isVisible($pageId, $elementId) {
  return $this
    ->command('visible', $pageId, $elementId);
}