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

25 lines
903 B
PHP

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