public function administratorUnpublishCategory(\Step\Acceptance\category $I)
 {
     $I->am('Administrator');
     $categoryName = 'automated testing unpub' . rand(1, 100);
     $I->wantToTest('Category creation in /administrator/');
     $I->doAdministratorLogin();
     $I->amGoingTo('Navigate to Categories page in /administrator/');
     $I->createCategory($categoryName);
     $I->searchForItem($categoryName);
     $I->waitForText('Weblinks: Categories', '30', ['css' => 'h1']);
     $I->checkAllResults();
     //publish the category
     $I->amGoingTo('try to publish a weblink category');
     $I->clickToolbarButton('publish');
     $I->waitForText('Weblinks: Categories', '30', ['css' => 'h1']);
     $I->expectTo('see a success message after publishing the category');
     $I->see('1 category successfully published.', ['id' => 'system-message-container']);
     // Unpublish it again
     $I->waitForText('Weblinks: Categories', '30', ['css' => 'h1']);
     $I->checkAllResults();
     $I->amGoingTo('Try to unpublish a weblink category');
     $I->clickToolbarButton('unpublish');
     $I->waitForText('Weblinks: Categories', '30', ['css' => 'h1']);
     $I->expectTo('See a success message after unpublishing the category');
     $I->see('1 category successfully unpublished', ['id' => 'system-message-container']);
     //delete the category
     $I->amGoingTo('Delete the Category which was created');
     $I->trashCategory($categoryName);
     $I->deleteCategory($categoryName);
 }
 /**
  * @depends administratorTrashCategory
  */
 public function administratorDeleteCategory(\Step\Acceptance\category $I)
 {
     $I->am('Administrator');
     $I->wantToTest('Deleting a Category 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('Weblinks: Categories', '60', ['css' => 'h1']);
     $I->setFilter('Select Status', 'Trashed');
     $I->searchForItem($this->categoryTitle);
     $I->checkAllResults();
     $I->amGoingTo('try to delete a Weblinks Category');
     $I->clickToolbarButton('Empty trash');
     $I->waitForElement(['id' => 'system-message-container'], '60');
     $I->expectTo('see a success message after Deleting the category');
     $I->see('1 category successfully deleted.', ['id' => 'system-message-container']);
 }