public function BrowserPageElementTrait::removeAttribute in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\BrowserCode
public function removeAttribute($pageId, $elementId, $name) {
return $this
->command('remove_attribute', $pageId, $elementId, $name);
}