Source
$get_template_application = $this->zbxTestGetText('//table//a[contains(@href, "applicationid='.$application_id.'")]');
<?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/CLegacyWebTest.php';
use Facebook\WebDriver\WebDriverBy;
/**
* @backup applications
*/
class testInheritanceApplication extends CLegacyWebTest {
private $template = 'Inheritance test template';
private $host = 'Template inheritance test host';
/**
* Select a single value from DB.
*
* @param string $query sql query
*
* @return mixed
*/
private function DBSelectValue($query) {
return (($result = DBSelect($query)) && ($row = DBfetch($result)) && $row) ? reset($row) : null;
}
/**
* Select host or template to open applications page.
*/
private function openApplicationsPage($host) {
$this->zbxTestLogin('applications.php?groupid=0&hostid=0');
$filter = $this->query('name:zbx_filter')->asForm()->waitUntilVisible()->one();
$filter->getField('Hosts')->clear()->fill($host);
$filter->submit();
$this->zbxTestCheckHeader('Applications');
}
public function testInheritanceApplication_CheckLayout() {
$this->openApplicationsPage($this->host);
// Get application names linked to host.
$applications = 'SELECT name FROM applications WHERE hostid IN ('.
'SELECT hostid FROM hosts WHERE host='.zbx_dbstr($this->host).
')'.
' AND applicationid IN ('.
'SELECT applicationid FROM application_template'.