You are here

public function BrowserPageElementTrait::attributes 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::attributes()

Returns the attributes of an element in a given page

Parameters

$pageId:

$elementId:

Return value

mixed

File

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

Class

BrowserPageElementTrait
Trait BrowserPageElementTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

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