Update to 6.6

This commit is contained in:
Mathieu Lagace
2019-12-04 20:58:20 -05:00
parent c916e5e580
commit 09523f2bb0
17 changed files with 1666 additions and 605 deletions

View File

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