Initial commit

This commit is contained in:
Julien Nahum
2022-09-20 21:59:52 +02:00
commit f8e6cd4dd6
479 changed files with 77078 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<?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 [];
}
}