mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
[ticket/12962] Add quick-links JS test
PHPBB3-12962
This commit is contained in:
parent
77f8bb48fe
commit
f21ef60175
3 changed files with 64 additions and 38 deletions
|
@ -33,3 +33,4 @@ require_once 'test_framework/phpbb_test_case.php';
|
|||
require_once 'test_framework/phpbb_database_test_case.php';
|
||||
require_once 'test_framework/phpbb_database_test_connection_manager.php';
|
||||
require_once 'test_framework/phpbb_functional_test_case.php';
|
||||
require_once 'test_framework/phpbb_ui_test_case.php';
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
*
|
||||
*/
|
||||
require_once __DIR__ . '/../../phpBB/vendor/facebook/webdriver/lib/__init__.php';
|
||||
require_once __DIR__ . '/phpbb_test_case_helpers.php';
|
||||
|
||||
require_once __DIR__ . '/../../phpBB/includes/functions_install.php';
|
||||
|
||||
class phpbb_ui_test_case extends phpbb_test_case
|
||||
|
|
27
tests/ui/quick_links_test.php
Normal file
27
tests/ui/quick_links_test.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group ui
|
||||
*/
|
||||
class quick_links_test extends phpbb_ui_test_case
|
||||
{
|
||||
|
||||
public function test_quick_links()
|
||||
{
|
||||
$this->visit('index.php');
|
||||
$this->assertEmpty(self::find_element('className', 'dropdown')->getText());
|
||||
self::find_element('className', 'dropdown-toggle')->click();
|
||||
$this->assertNotNull(self::find_element('className', 'dropdown')->getText());
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue