Fix test suites.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-03-19 09:11:42 -05:00
parent 68b971a571
commit 69cc051489
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
4 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@ class B01_Admin_ApiKeysCest extends CestAbstract
$I->amOnPage('/api_keys');
$I->see('My API Keys');
$I->click('add', '#content');
$I->click('Add API Key', '#content');
$I->submitForm('.form', [
'comment' => 'API Key Test',
@ -34,7 +34,7 @@ class B01_Admin_ApiKeysCest extends CestAbstract
$I->dontSee('API Key Test');
// Create another API key and test its revocation from the admin side.
$I->click('add', '#content');
$I->click('Add API Key', '#content');
$I->submitForm('.form', [
'comment' => 'API Key Admin Test',

View File

@ -23,7 +23,7 @@ class B02_Admin_RecordsCest extends CestAbstract
$I->see($this->login_username);
// Add a secondary user
$I->click('add', '#content');
$I->click('Add User', '#content');
$I->submitForm('.form', [
'name' => 'ZZZ Test Administrator',
@ -54,7 +54,7 @@ class B02_Admin_RecordsCest extends CestAbstract
$I->see('Super Administrator');
// Add another role
$I->click('add', '#content');
$I->click('Add Permission', '#content');
$I->submitForm('.form', [
'name' => 'ZZZ Test Administrator',

View File

@ -16,7 +16,7 @@ class C03_Station_MountPointsCest extends CestAbstract
$I->amOnPage('/station/' . $station_id . '/mounts');
$I->see('Mount Points');
$I->click('add', '#content');
$I->click('Add Mount Point', '#content');
$I->submitForm('.form', [
'name' => '/test.mp3',

View File

@ -16,7 +16,7 @@ class C03_Station_RemoteRelaysCest extends CestAbstract
$I->amOnPage('/station/' . $station_id . '/remotes');
$I->see('Remote Relays');
$I->click('add', '#content');
$I->click('Add Remote Relay', '#content');
$I->submitForm('.form', [
'type' => 'shoutcast1',