d87bdb77
Administrator
first commit
|
1
2
3
4
5
6
7
8
9
|
<?php
$I = new \Step\Acceptance\CRMOperatorSteps($scenario);
$I->wantTo('add different customers to database');
$I->amInAddCustomerUi();
$first_customer = $I->imagineCustomer();
$I->fillCustomerDataForm($first_customer);
$I->submitCustomerDataForm();
$I->see('Congratulations!');
|