Source
$this->assertTrue($dialog->getFooter()->query('button', $text)->one()->isEnabled(($text === 'Cancel') ? true : $action_status));
<?php
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
require_once dirname(__FILE__).'/../../include/CWebTest.php';
require_once dirname(__FILE__).'/../behaviors/CMessageBehavior.php';
require_once dirname(__FILE__).'/../behaviors/CTableBehavior.php';
require_once dirname(__FILE__).'/../../include/helpers/CDataHelper.php';
use Facebook\WebDriver\WebDriverKeys;
/**
* @backup role, module, users, report, services
* @dataSource ExecuteNowAction
* @onBefore prepareUserData, prepareReportData, prepareServiceData, prepareCauseAndSymptomData
*/
class testUserRolesPermissions extends CWebTest {
/**
* Attach MessageBehavior and TableBehavior to the test.
*
* @return array
*/
public function getBehaviors() {
return [
CMessageBehavior::class,
CTableBehavior::class
];
}
/**
* Id of role that created for future role change for Super admin.
*
* @var integer
*/
protected static $super_roleid;
protected static $super_roleid2;
/**
* Id of user that created for future checks.
*
* @var integer
*/
protected static $super_user;
/**
* Id of created scheduled report.
*
* @var integer
*/
protected static $reportid;