Source
xxxxxxxxxx
$this->assertEquals('Event details', $this->query('tag:h1')->waitUntilVisible()->one()->getText());
<?php
/*
** Zabbix
** Copyright (C) 2001-2022 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
require_once dirname(__FILE__) . '/../include/CWebTest.php';
/**
* Test checks link from trigger URL field on different pages.
*
* @backup profiles
* @backup problem
*/
class testPageTriggerUrl extends CWebTest {
public function getTriggerLinkData() {
return [
// Check tag priority.
[
[
'trigger' => '1_trigger_High',
'links' => [
'Problems' => 'zabbix.php?action=problem.view&filter_name=&triggerids%5B%5D=100035',
'Configuration' => 'triggers.php?form=update&triggerid=100035',
'Trigger URL' => 'tr_events.php?triggerid=100035&eventid=9003',
'Unique webhook url' => 'zabbix.php?action=mediatype.list&ddreset=1',
'Webhook url for all' => 'zabbix.php?action=mediatype.edit&mediatypeid=101',
'1_item' => 'history.php?action=showgraph&itemids%5B%5D=99086'
],
'background' => "high-bg"
]
],
[
[
'trigger' => '1_trigger_Not_classified',
'links' => [
'Problems' => 'zabbix.php?action=problem.view&filter_name=&triggerids%5B%5D=100032',
'Configuration' => 'triggers.php?form=update&triggerid=100032',
'Trigger URL' => 'tr_events.php?triggerid=100032&eventid=9000',
'Webhook url for all' => 'zabbix.php?action=mediatype.edit&mediatypeid=101',
'1_item' => 'history.php?action=showgraph&itemids%5B%5D=99086'
],
'background' => 'na-bg'
]
]
];
}