Adds Dusk and Gitpod

This commit is contained in:
Joao Patricio
2023-04-03 09:31:04 +01:00
parent 13fbdc2340
commit 27172740e9
13 changed files with 376 additions and 1 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<string, string>
*/
public static function siteElements(): array
{
return [
'@element' => '#selector',
];
}
}