diff --git a/tests/acceptance/AdministratorWeblinksCest.php b/tests/acceptance/AdministratorWeblinksCest.php index c17ef83..3ba5ab5 100644 --- a/tests/acceptance/AdministratorWeblinksCest.php +++ b/tests/acceptance/AdministratorWeblinksCest.php @@ -13,6 +13,23 @@ class AdministratorWeblinksCest { public function administratorCreateWebLink(AcceptanceTester $I) { - //TODO + $I->am('Administrator'); + $I->wantToTest('Category creation in /administrator/'); + + $I->doAdministratorLogin(); + + $I->amGoingTo('Navigate to Categories page in /administrator/'); + $I->amOnPage('administrator/index.php?option=com_categories&extension=com_weblinks'); + $I->waitForText('Category Manager: Weblinks','5',['css' => 'h1']); + $I->expectTo('see categories page'); + $I->checkForPhpNoticesOrWarnings(); + + $I->amGoingTo('try to save a category with a filled title'); + $I->click(['xpath'=> "//button[@onclick=\"Joomla.submitbutton('category.add')\"]"]); + $I->waitForText('Category Manager: Add A New Weblinks Category','5',['css' => 'h1']); + $I->fillField(['id' => 'jform_title'],'automated testing' . rand(1,100)); + $I->click(['xpath'=> "//button[@onclick=\"Joomla.submitbutton('category.apply')\"]"]); + $I->expectTo('see a success message after saving the category'); + $I->see('Category successfully saved',['id' => 'system-message-container']); } } \ No newline at end of file