We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d9a477 commit 1f440acCopy full SHA for 1f440ac
src/JoomlaBrowser.php
@@ -86,10 +86,8 @@ public function installJoomla()
86
$this->debug('I wait for Main Configuration');
87
$I->waitForText('Main Configuration', 10,['xpath' => '//h3']);
88
89
- $this->debug('I click Language Selector');
90
- $I->click(['xpath' => "//div[@id='jform_language_chzn']/a"]); // Language Selector
91
- $this->debug('I select en-GB');
92
- $I->click(['xpath' => "//li[text()='English (United Kingdom)']"]); // English (United Kingdom)
+ $I->debug('I select en-GB as installation language')
+ $I->selectOptionInChosen('Select Language', 'English (United Kingdom)');
93
$I->wait(1);
94
$this->debug('I fill Site Name');
95
$I->fillField(['id' => 'jform_site_name'], 'Joomla CMS test');
0 commit comments