mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
21 lines
344 B
PHP
21 lines
344 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace LibreNMS\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',
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|