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