phpmyadmin/test/selenium/XssTest.php
Maurício Meneghini Fauth 58351b861c
Use testsuite option instead of group for Selenium tests
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2021-07-05 16:52:41 -03:00

44 lines
924 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 static $createDatabase = false;
protected function setUp(): void
{
parent::setUp();
$this->login();
}
/**
* 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();
$this->assertEquals('Missing value in the form!', $this->alertText());
}
}