mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
15 lines
430 B
PHP
15 lines
430 B
PHP
<?php
|
|
|
|
$I = new WebGuy($scenario);
|
|
$I->wantTo('click invoice now');
|
|
$I->amOnPage('/');
|
|
$I->click('#startButton');
|
|
$I->seeInDatabase('users', ['id' => 1]);
|
|
|
|
$I->wantTo('create a client');
|
|
$I->click('#createClientLink');
|
|
$I->fillField('input#email', 'test@aol.com');
|
|
$I->click('#clientDoneButton');
|
|
$I->click('#saveButton');
|
|
$I->seeInDatabase('contacts', ['email' => 'test@aol.com']);
|
|
$I->seeInField('input#email', 'test@aol.com'); |