40 lines
658 B
PHP
40 lines
658 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Browser\Pages;
|
||
|
|
||
|
use Laravel\Dusk\Browser;
|
||
|
|
||
|
class Onboarding extends Page
|
||
|
{
|
||
|
/**
|
||
|
* Get the URL for the page.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function url()
|
||
|
{
|
||
|
return '/onboarding';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Assert that the browser is on the page.
|
||
|
*
|
||
|
* @param Browser $browser
|
||
|
* @return void
|
||
|
*/
|
||
|
public function assert(Browser $browser)
|
||
|
{
|
||
|
$browser->waitForLocation($this->url())->assertPathIs($this->url());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the element shortcuts for the page.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function elements()
|
||
|
{
|
||
|
return [];
|
||
|
}
|
||
|
}
|