You are here

public function BrowserNavigateTrait::visit in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Browser/BrowserNavigateTrait.php \Zumba\GastonJS\Browser\BrowserNavigateTrait::visit()

Send a visit command to the browser

Parameters

$url:

Return value

mixed

File

vendor/jcalderonzumba/gastonjs/src/Browser/BrowserNavigateTrait.php, line 18

Class

BrowserNavigateTrait
Trait BrowserNavigateTrait @package Zumba\GastonJS\Browser

Namespace

Zumba\GastonJS\Browser

Code

public function visit($url) {
  return $this
    ->command('visit', $url);
}