You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php |
|
|
|
namespace Tests\Browser\Pages; |
|
|
|
use Laravel\Dusk\Page as BasePage; |
|
|
|
abstract class Page extends BasePage |
|
{ |
|
/** |
|
* Get the global element shortcuts for the site. |
|
* |
|
* @return array |
|
*/ |
|
public static function siteElements() |
|
{ |
|
return [ |
|
'@element' => '#selector', |
|
]; |
|
} |
|
}
|
|
|