Source
$this->assertTrue($table->query('xpath:.//a[text()='.CXPathHelper::escapeQuotes($headers[0]).']')->one()->isClickable());
<?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__).'/../../include/helpers/CDataHelper.php';
require_once dirname(__FILE__).'/../behaviors/CTableBehavior.php';
/**
* @backup dashboard
*
* @onBefore prepareTemplateDashboardsData
*/
class testDashboardsTemplatedDashboardPage extends CWebTest {
/**
* Attach TableBehavior to the test.
*
* @return array
*/
public function getBehaviors() {
return [CTableBehavior::class];
}
const TEMPLATEID = 99022; // ID of the template for with a list of dashboards.
const DASHBOARDS = ['1st dashboard', '2nd dashboard', 'middle dashboard', 'z last dashboard'];
const DASHBOARDS_2_DELETE = ['1st dashboard', 'middle dashboard'];
public static function prepareTemplateDashboardsData() {
foreach (self::DASHBOARDS as $dashboard) {
CDataHelper::call('templatedashboard.create', [
[
'templateid' => self::TEMPLATEID,
'name' => $dashboard,
'pages' => [
[
'widgets' => [
[
'type' => 'clock',
'name' => '1st Dashboard clock'
]
]
]
]
]
]);
}
}
public function testDashboardsTemplatedDashboardPage_Layout() {
$this->page->login()->open('zabbix.php?action=template.dashboard.list&templateid='.self::TEMPLATEID);