diff --git a/tests/acceptance/InstallCest.php b/tests/acceptance/InstallCest.php index 976b6f991..5347fcbfa 100644 --- a/tests/acceptance/InstallCest.php +++ b/tests/acceptance/InstallCest.php @@ -22,9 +22,22 @@ class InstallCest public function installStep1ToStep2(AcceptanceTester $I) { $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->click('start'); $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(); + + + + // .... + } }