1
0
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:
Cameron
2018-02-16 15:42:29 -08:00
parent 1d5a70ab4b
commit 38dd581c20

View File

@@ -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();
// ....
}
} }