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 testPageProblems extends CLegacyWebTest {
public function getBehaviors() {
'class' => CTagBehavior::class,
'tag_selector' => 'id:filter-tags_0'
public function testPageProblems_CheckLayout() {
$this->zbxTestLogin('zabbix.php?action=problem.view');
$this->zbxTestCheckTitle('Problems');
$this->zbxTestCheckHeader('Problems');
$this->assertTrue($this->zbxTestCheckboxSelected('show_10'));
$this->zbxTestTextPresent(['Show', 'Host groups', 'Host', 'Triggers', 'Problem', 'Not classified',
'Information', 'Warning', 'Average', 'High', 'Disaster', 'Age less than', 'Host inventory', 'Tags',
'Show suppressed problems', 'Show unacknowledged only', 'Severity', 'Time', 'Recovery time', 'Status', 'Host',
'Problem', 'Duration', 'Ack', 'Actions', 'Tags']);
$this->zbxTestCheckNoRealHostnames();
public function testPageProblems_History_CheckLayout() {
$this->zbxTestLogin('zabbix.php?action=problem.view');
$this->zbxTestCheckHeader('Problems');
$this->zbxTestClickXpathWait("//label[text()='History']");
$this->query('name:filter_apply')->one()->click();
$this->assertTrue($this->zbxTestCheckboxSelected('show_20'));
$this->zbxTestAssertNotVisibleId('age_state_0');
$this->zbxTestTextPresent(['Show', 'Host groups', 'Host', 'Triggers', 'Problem', 'Not classified',
'Information', 'Warning', 'Average', 'High', 'Disaster', 'Host inventory', 'Tags', 'Show suppressed problems',
'Show unacknowledged only', 'Severity', 'Time', 'Recovery time','Status', 'Host', 'Problem', 'Duration',
'Ack', 'Actions', 'Tags']);
$this->zbxTestCheckNoRealHostnames();
public function testPageProblems_FilterByTagsOptionAndOr() {
$this->zbxTestLogin('zabbix.php?action=problem.view');
$this->zbxTestCheckHeader('Problems');
$result_form = $this->query('xpath://form[@name="problem"]')->one();
$this->zbxTestClickButtonText('Reset');
$result_form->waitUntilReloaded();
$this->assertTrue($this->zbxTestCheckboxSelected('evaltype_00'));
$form = $this->query('id:tabfilter_0')->asForm()->waitUntilPresent()->one();
$this->zbxTestDropdownAssertSelected('tags_00_operator', 'Contains');