am('Administrator'); $I->installJoomlaRemovingInstallationFolder(); $I->doAdministratorLogin(); $I->setErrorReportingToDevelopment(); } /** * @depends installJoomla */ public function installWeblinks(\AcceptanceTester $I) { $I->doAdministratorLogin(); $I->comment('get Weblinks repository folder from acceptance.suite.yml (see _support/AcceptanceHelper.php)'); // URL where the package file to install is located (mostly the same as joomla-cms) $url = $I->getConfiguration('url'); $I->installExtensionFromUrl($url . "/pkg-weblinks-current.zip"); $I->doAdministratorLogout(); } }