2025-04-10 23:19:13 +08:00

32 lines
783 B
PHP
Executable File

<?php
use tests\codeception\_pages\CreateItemPage;
/* @var $scenario Codeception\Scenario */
$I = new AcceptanceTester($scenario);
$I->wantTo('ensure that create role item work');
$createItemPage = CreateItemPage::openBy($I);
$I->see('Create Role', 'h1');
$I->amGoingTo('submit role form with no data');
$createItemPage->submit([]);
if (method_exists($I, 'wait')) {
$I->wait(3); // only for selenium
}
$I->expectTo('see validations errors');
$I->see('Create Role', 'h1');
$I->see('Name cannot be blank');
$I->amGoingTo('submit role form with correct data');
$createItemPage->submit([
'name' => 'roleTesterAcp',
'description' => 'Role created for test',
]);
if (method_exists($I, 'wait')) {
$I->wait(3); // only for selenium
}
$I->dontSeeElement('#item-form');