mirror of
https://github.com/e107inc/e107.git
synced 2025-08-06 06:38:00 +02:00
start of step 2
This commit is contained in:
@@ -22,9 +22,22 @@ class InstallCest
|
|||||||
public function installStep1ToStep2(AcceptanceTester $I)
|
public function installStep1ToStep2(AcceptanceTester $I)
|
||||||
{
|
{
|
||||||
$I->amOnPage('/install.php');
|
$I->amOnPage('/install.php');
|
||||||
$I->wantTo("Verify Proceed to Step 1 of the Installation");
|
$I->wantTo("Verify Proceed to Step 2 of the Installation");
|
||||||
$I->selectOption("language", 'English');
|
$I->selectOption("language", 'English');
|
||||||
$I->click('start');
|
$I->click('start');
|
||||||
$I->see("MySQL Server Details", 'h3');
|
$I->see("MySQL Server Details", 'h3');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function installStep2ToStep3(AcceptanceTester $I)
|
||||||
|
{
|
||||||
|
$I->amOnPage('/install.php');
|
||||||
|
$I->wantTo("Verify Proceed to Step 3 of the Installation");
|
||||||
|
$this->installStep1ToStep2($I);
|
||||||
|
|
||||||
|
$config = $I->getConfig();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// ....
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user