mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 12:34:13 +00:00
29 lines
449 B
PHP
29 lines
449 B
PHP
<?php
|
|
|
|
namespace Tests\Browser\Pages;
|
|
|
|
class Home extends Page
|
|
{
|
|
/**
|
|
* Get the URL for the page.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function url()
|
|
{
|
|
return '/home';
|
|
}
|
|
|
|
/**
|
|
* Click on the log out link.
|
|
*
|
|
* @param \Laravel\Dusk\Browser $browser
|
|
* @return void
|
|
*/
|
|
public function clickLogout($browser)
|
|
{
|
|
$browser->clickLink('Logout')
|
|
->pause(300);
|
|
}
|
|
}
|