You are here

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

Remove an attribute for a given page and element

Parameters

$pageId:

$elementId:

$name:

Return value

mixed

Throws

\Zumba\GastonJS\Exception\BrowserError

\Exception

File

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

Class

BrowserPageElementTrait
Trait BrowserPageElementTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

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