mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-12-26 01:57:30 +00:00
Copying over category creation test so that we can see difference in next commit
This commit is contained in:
parent
3d6e027f5e
commit
dc8cbb11e2
@ -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']);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user