phpmyadmin/test/selenium/XssTest.php
William Desportes 8da964fa40
Move login to setUp() of parent::
Signed-off-by: William Desportes <williamdes@wdes.fr>
2026-02-24 10:26:12 +01:00

38 lines
817 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Selenium;
/**
* @coversNothing
*/
class XssTest extends TestBase
{
/**
* Create a test database for this test class
*
* @var bool
*/
protected $createDatabase = false;
/**
* Tests the SQL query tab with a null query
*
* @group large
*/
public function testQueryTabWithNullValue(): void
{
if ($this->isSafari()) {
$this->markTestSkipped('Alerts not supported on Safari browser.');
}
$this->waitForElement('partialLinkText', 'SQL')->click();
$this->waitAjax();
$this->waitForElement('id', 'querybox');
$this->byId('button_submit_query')->click();
self::assertEquals('Missing value in the form!', $this->alertText());
}
}