Skip to content

Commit f997dce

Browse files
authored
Fixes the click on the install by URL tab. The necessary JavaScript w… (#209)
* Fixes the click on the install by URL tab. The necessary JavaScript was not loaded, to nothing happened and the input field for the URL was not reachable. * Codestyle adjustments.
1 parent c11790c commit f997dce

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/JoomlaBrowser.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,9 @@ public function installExtensionFromUrl($url, $type = 'Extension')
496496
{
497497
$this->amOnPage('/administrator/index.php?option=com_installer');
498498
$this->waitForText('Extensions: Install', '30', array('css' => 'H1'));
499+
500+
// Let the tabsset come to life
501+
$this->wait(1);
499502
$this->click(array('link' => 'Install from URL'));
500503
$this->debug('I enter the url');
501504
$this->fillField(array('id' => 'install_url'), $url);

0 commit comments

Comments
 (0)