public function BrowserFrameTrait::pushFrame in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserFrameTrait.php \Zumba\GastonJS\Browser\BrowserFrameTrait::pushFrame()
Goes into the iframe to do stuff
Parameters
string $name:
int $timeout:
Return value
mixed
Throws
\Zumba\GastonJS\Exception\BrowserError
\Exception
File
- vendor/
jcalderonzumba/ gastonjs/ src/ Browser/ BrowserFrameTrait.php, line 28
Class
- BrowserFrameTrait
- Trait BrowserFrameTrait @package Zumba\GastonJS\Browser
Namespace
Zumba\GastonJS\BrowserCode
public function pushFrame($name, $timeout = null) {
return $this
->command("push_frame", $name, $timeout);
}