mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
25 lines
996 B
PHP
25 lines
996 B
PHP
<?php
|
|
$I = new AcceptanceTester($scenario);
|
|
AcceptanceTester::test_login($I);
|
|
$I->am('logged in user');
|
|
$I->wantTo('ensure that depreciations page loads without errors');
|
|
$I->amGoingTo('go to the assets listing page');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->amOnPage('/admin/settings/depreciations');
|
|
$I->seeInTitle('Depreciations');
|
|
$I->waitForElement('.table', 5); // secs
|
|
$I->seeNumberOfElements('tr', [0,10]);
|
|
$I->seeInPageSource('/admin/settings/depreciations/create');
|
|
$I->dontSee('Depreciations', '.page-header');
|
|
$I->see('Depreciations', 'h1.pull-left');
|
|
|
|
/* Create Form */
|
|
$I->wantTo('ensure that the create depreciation form loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->click(['link' => 'Create New']);
|
|
$I->amOnPage('/admin/settings/depreciations/create');
|
|
$I->seeInTitle('Create Depreciation');
|
|
$I->dontSee('Create Depreciation', '.page-header');
|
|
$I->see('Create Depreciation', 'h1.pull-left');
|
|
$I->dontSee('<span class="');
|