Source
$this->zbxTestClickXpathWait("//button[contains(@onclick, 'unlink_and_clear[".$hostid."]') and text()='Unlink and clear']");
<?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;
/**
* Test the creation of inheritance of new objects on a previously linked template.
*
* @backup items
*/
class testTemplateInheritance extends CLegacyWebTest {
/**
* The name of the test template created in the test data set.
*
* @var string
*/
protected $templateName = 'Inheritance test template';
/**
* The name of the test host created in the test data set.
*
* @var string
*/
protected $hostName = 'Template inheritance test host';
public function testTemplateInheritance_linkHost(){
$sql = "select hostid from hosts where host='Template Module Zabbix agent';";
$this->assertEquals(1, CDBHelper::getCount($sql));
$row = DBfetch(DBselect($sql));
$hostid = $row['hostid'];
$this->zbxTestLogin('hosts.php');
$this->zbxTestCheckTitle('Configuration of hosts');
$this->zbxTestClickLinkTextWait($this->hostName);
$this->zbxTestTabSwitch('Templates');
$this->zbxTestClickButtonMultiselect('add_templates_');
$this->zbxTestLaunchOverlayDialog('Templates');
COverlayDialogElement::find()->one()->setDataContext('Templates');
$this->zbxTestClickLinkTextWait('Template Module Zabbix agent');
$this->zbxTestTextPresent('Template Module Zabbix agent');