Source
$this->assertEquals(['', 'Severity', 'Value', 'Name', 'Operational data', 'Expression', 'Status', 'Info', 'Tags'], $result);
<?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/CLegacyWebTest.php';
require_once dirname(__FILE__).'/../behaviors/CTableBehavior.php';
require_once dirname(__FILE__).'/../behaviors/CTagBehavior.php';
use Facebook\WebDriver\WebDriverBy;
class testPageTriggers extends CLegacyWebTest {
/**
* Attach TagBehavior and TableBehavior to the test.
*
* @return array
*/
public function getBehaviors() {
return [
CTableBehavior::class,
CTagBehavior::class
];
}
public $hostid = 99050;
private $selector = 'xpath://form[@name="trigger_form"]/table[contains(@class, "list-table")]';
public static function data() {
return CDBHelper::getDataProvider(
'SELECT hostid,status'.
' FROM hosts'.
' WHERE host LIKE \'%-layout-test%\''
);
}
/**
* @dataProvider data
*/
public function testPageTriggers_CheckLayout($data) {
$context = ($data['status'] === '3') ? '&context=template' : '&context=host';
$this->zbxTestLogin('zabbix.php?action=trigger.list&filter_set=1&filter_hostids[0]='.$data['hostid'].$context);
$this->zbxTestCheckTitle('Configuration of triggers');
$this->zbxTestCheckHeader('Triggers');
$this->zbxTestTextPresent('Displaying');
// Get table headers.
$result = [];
$elements = $this->webDriver->findElements(WebDriverBy::xpath('//form[@name="trigger_form"]//thead/tr/th'));
foreach ($elements as $element) {
$result[] = $element->getText();