Skip to content

Commit 2aa3eec

Browse files
committed
Since is still failing I'm hotfixing it
This is a temporal solution while we find the right one
1 parent 3cb37b0 commit 2aa3eec

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/JoomlaBrowser.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,18 @@ public function installJoomlaRemovingInstallationFolder()
159159
$this->debug('Removing Installation Folder');
160160
$I->click(['xpath' => "//input[@value='Remove installation folder']"]);
161161
$I->debug('I wait for Removing Installation Folder button to become disabled');
162+
// @todo https://github.com/joomla-projects/joomla-browser/issues/45
163+
$I->wait(2);
164+
/*
162165
$I->waitForElementChange(
163166
['xpath' => "//input[@name='instDefault']"],
164167
function(WebDriverElement $el) {
165168
return !$el->isEnabled();
166169
},
167170
60
168171
);
169-
$this->debug('Joomla is now installed');
172+
*/
173+
$I->debug('Joomla is now installed');
170174
$I->see('Congratulations! Joomla! is now installed.',['xpath' => '//h3']);
171175
}
172176

0 commit comments

Comments
 (0)