Source
$form->query('xpath://table[contains(@id,"valuemap-table")]//button[text()="Remove"]')->waitUntilClickable()->all()->click();
<?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__).'/common/testFormPreprocessing.php';
require_once dirname(__FILE__).'/../include/helpers/CDataHelper.php';
require_once dirname(__FILE__).'/behaviors/CPreprocessingBehavior.php';
/**
* @dataSource Services, EntitiesTags
*
* @onBefore prepareMediaTypeData
*
* @backup users
*/
class testFormTabIndicators extends CWebTest {
/**
* Attach PreprocessingBehavior to the test.
*
* @return array
*/
public function getBehaviors() {
return [CPreprocessingBehavior::class];
}
/**
* Enable media types before test.
*/
public function prepareMediaTypeData() {
CDataHelper::call('user.update', [
[
'userid' => 1,
'medias' => [
[
'mediatypeid' => 1, // Email.
'sendto' => ['test@zabbix.com'],
'active' => MEDIA_TYPE_STATUS_ACTIVE,
'severity' => 63,
'period' => '1-7,00:00-24:00'
]
]
]
]);
}
public function getTabData() {
return [
// #0 Template configuration form tab data.