Add a test that wont work due to auth issues currently

This commit is contained in:
Dane Everitt 2018-07-14 22:11:56 -07:00
parent a44b4c4426
commit aba1b297c8
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 77 additions and 1 deletions

View file

@ -0,0 +1,28 @@
<?php
namespace Pterodactyl\Tests\Browser\Pages\Dashboard;
use Pterodactyl\Tests\Browser\Pages\BasePage;
class AccountPage extends BasePage
{
/**
* @return string
*/
public function url()
{
return '/account';
}
/**
* @return array
*/
public function elements()
{
return array_merge(parent::elements(), [
'@email' => '#update-email-container #grid-email',
'@password' => '#update-email-container #grid-password',
'@submit' => '#update-email-container button[type="submit"]',
]);
}
}