Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
srv
/
admin
/
htdocs
/
phpmyadmin-4.4
/
test
/
selenium
/
//proc/self/root/srv/admin/htdocs/phpmyadmin-4.4/test/selenium/PmaSeleniumXssTest.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Selenium TestCase for SQL query window related tests * * @package PhpMyAdmin-test * @subpackage Selenium */ require_once 'TestBase.php'; /** * PmaSeleniumXSSTest class * * @package PhpMyAdmin-test * @subpackage Selenium * @group selenium */ class PMA_SeleniumXSSTest extends PMA_SeleniumBase { /** * Tests the SQL query tab with a null query * * @return void * * @group large */ public function testQueryTabWithNullValue() { if (/*overload*/mb_strtolower($this->getBrowser()) == 'safari') { $this->markTestSkipped('Alerts not supported on Safari browser.'); } $this->login(); $this->waitForElement('byLinkText', "SQL")->click(); $this->waitForElement("byId", "queryboxf"); $this->byId("button_submit_query")->click(); $this->assertEquals("Missing value in the form!", $this->alertText()); } } ?>