snipe-it/tests/acceptance/AccessoriesCept.php
2016-03-25 01:18:05 -07:00

25 lines
897 B
PHP

<?php
$I = new AcceptanceTester($scenario);
AcceptanceTester::test_login($I);
$I->am('logged in user');
$I->wantTo('ensure that the accessories listing page loads without errors');
$I->lookForwardTo('seeing it load without errors');
$I->amOnPage('/admin/accessories');
$I->waitForElement('.table', 5); // secs
$I->seeNumberOfElements('tr', [1,30]);
$I->seeInTitle('Accessories');
$I->see('Accessories');
$I->seeInPageSource('admin/accessories/create');
$I->dontSee('Accessories', '.page-header');
$I->see('Accessories', 'h1.pull-left');
/* Create Form */
$I->wantTo('ensure that the create accessories form loads without errors');
$I->lookForwardTo('seeing it load without errors');
$I->click(['link' => 'Create New']);
$I->amOnPage('/admin/accessories/create');
$I->dontSee('Create Accessory', '.page-header');
$I->see('Create Accessory', 'h1.pull-left');
$I->dontSee('&lt;span class=&quot;');