Skip to content

Commit a748bda

Browse files
authored
Merge pull request #218 from stell/develop
2 parents b40fab1 + d670251 commit a748bda

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Desktop.ini
1818
.buildpath
1919
.project
2020
.settings
21+
.vscode
22+
23+
# VS Code
24+
*.code-workspace
2125

2226
# Temp files
2327
*.tmp

src/JoomlaBrowser.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,9 @@ public function installExtensionFromFolder($path, $type = 'Extension')
471471
{
472472
$this->amOnPage('/administrator/index.php?option=com_installer');
473473
$this->waitForText('Extensions: Install', '30', array('css' => 'H1'));
474+
475+
// Let the tabsset come to life
476+
$this->wait(1);
474477
$this->click(array('link' => 'Install from Folder'));
475478
$this->debug('I enter the Path');
476479
$this->fillField(array('id' => 'install_directory'), $path);
@@ -1296,4 +1299,19 @@ public function createUser($name, $username, $password, $email, $userGroup = 'Su
12961299
$this->see('User saved', '#system-message-container');
12971300
$this->checkForPhpNoticesOrWarnings();
12981301
}
1302+
1303+
/**
1304+
* Get a value from the configuration
1305+
*
1306+
* @param string $name Name of the config option
1307+
*
1308+
* @return mixed
1309+
*
1310+
* @since 4.0
1311+
* @throws \Codeception\Exception\ModuleException
1312+
*/
1313+
public function getConfig($name)
1314+
{
1315+
return $this->config[$name];
1316+
}
12991317
}

0 commit comments

Comments
 (0)