You are here

public function BrowserPageElementTrait::equals in Zircon Profile 8.0

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

Check if two elements are the same on a give

Parameters

$pageId:

$firstId:

$secondId:

Return value

bool

File

vendor/jcalderonzumba/gastonjs/src/Browser/BrowserPageElementTrait.php, line 106

Class

BrowserPageElementTrait
Trait BrowserPageElementTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

public function equals($pageId, $firstId, $secondId) {
  return $this
    ->command('equals', $pageId, $firstId, $secondId);
}