public function administratorCreateCategory(\Step\Acceptance\category $I)
 {
     $I->am('Administrator');
     $I->wantToTest('create a Category in /administrator/');
     $I->doAdministratorLogin();
     $I->amGoingTo('Navigate to Categories page in /administrator/ and create a Category');
     $I->amOnPage('administrator/index.php?option=com_categories&extension=com_weblinks');
     $I->waitForText('Weblinks: Categories', '60', ['css' => 'h1']);
     $I->expectTo('see categories page');
     $I->checkForPhpNoticesOrWarnings();
     $I->amGoingTo('try to save a category with a filled title');
     $I->clickToolbarButton('New');
     $I->waitForText('Weblinks: New Category', '60', ['css' => 'h1']);
     $I->fillField(['id' => 'jform_title'], $this->categoryTitle);
     $I->clickToolbarButton('Save & Close');
     $I->expectTo('see a success message after saving the category');
     $I->see('Category successfully saved', ['id' => 'system-message-container']);
 }