Skip to content

Commit 75bb0a9

Browse files
committed
Update changed strings
The merge of joomla/joomla-cms@587d846#diff-96a553a6573472300f4c6a8c6797ad19R30 related to the issue joomla/joomla-cms#7490 caused JoomlaBrowser to not be able to install extensions. This commit updates the strings as needed
1 parent 4405032 commit 75bb0a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/JoomlaBrowser.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public function installExtensionFromDirectory($path, $type = 'Extension')
242242
{
243243
$I = $this;
244244
$I->amOnPage('/administrator/index.php?option=com_installer');
245-
$I->waitForText('Extension Manager: Install','30', ['css' => 'H1']);
245+
$I->waitForText('Extensions: Install','30', ['css' => 'H1']);
246246
$I->click(['link' => 'Install from Directory']);
247247
$this->debug('I enter the Path');
248248
$I->fillField(['id' => 'install_directory'], $path);
@@ -271,7 +271,7 @@ public function installExtensionFromUrl($url, $type = 'Extension')
271271
{
272272
$I = $this;
273273
$I->amOnPage('/administrator/index.php?option=com_installer');
274-
$I->waitForText('Extension Manager: Install','30', ['css' => 'H1']);
274+
$I->waitForText('Extensions: Install','30', ['css' => 'H1']);
275275
$I->click(['link' => 'Install from URL']);
276276
$this->debug('I enter the url');
277277
$I->fillField(['id' => 'install_url'], $url);
@@ -405,7 +405,7 @@ public function uninstallExtension($extensionName)
405405
{
406406
$I = $this;
407407
$I->amOnPage('/administrator/index.php?option=com_installer&view=manage');
408-
$I->waitForText('Extension Manager: Manage','30', ['css' => 'H1']);
408+
$I->waitForText('Extensions: Manage','30', ['css' => 'H1']);
409409
$I->searchForItem($extensionName);
410410
$I->waitForElement(['id' => 'manageList'],'30');
411411
$I->click(['xpath' => "//input[@id='cb0']"]);

0 commit comments

Comments
 (0)