mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
21 lines
335 B
PHP
21 lines
335 B
PHP
<?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',
|
|
];
|
|
}
|
|
}
|