phpmyadmin/test/selenium
2013-08-30 00:28:49 +05:30
..
Helper.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumCreateDropDatabaseTest.php Remove debugging code 2013-08-28 10:37:05 +02:00
PmaSeleniumCreateRemoveUserTest.php Use types 2013-08-27 22:22:14 +05:30
PmaSeleniumDbEventsTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumDbOperationsTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumDbProceduresTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumDbStructureTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumDbTriggersTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumExportTest.php Selenium tests for export 2013-08-27 23:24:31 +05:30
PmaSeleniumImportTest.php Use types 2013-08-27 22:22:14 +05:30
PmaSeleniumLoginTest.php Use types 2013-08-27 22:22:14 +05:30
PmaSeleniumPrivilegesTest.php Use types 2013-08-27 22:22:14 +05:30
PmaSeleniumServerSettingsTest.php Tests for server settings tab 2013-08-28 18:35:21 +05:30
PmaSeleniumTableBrowseTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumTableCreateTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumTableInsertTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumTableOperationsTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumTableStructureTest.php Resolve merge conflict 2013-08-28 17:29:34 +05:30
PmaSeleniumTrackingTest.php Selenium tests for table tracking 2013-08-30 00:28:49 +05:30
PmaSeleniumXssTest.php Use types 2013-08-27 22:22:14 +05:30
README fix typo, improve coding style 2012-04-06 16:28:44 +02:00
TestConfig.php These constants serve the same purpose 2013-08-21 12:26:17 +05:30

Guide to run the AllSeleniumTests.php (Yasitha Pandithawatta)
=============================================================

1. Tested with version 4.0
2. Configure the testing environment - Browser and add the following fields to
 phpunit.xml.dist
    <php>
        <const name="TESTSUITE_SERVER" value="localhost"/>
        <const name="TESTSUITE_USER" value="root"/>
        <const name="TESTSUITE_PASSWORD" value="root"/>
        <const name="TESTSUITE_DATABASE" value="test"/>
        <const name="TESTSUITE_PHPMYADMIN_HOST" value="http://localhost" />
        <const name="TESTSUITE_PHPMYADMIN_URL" value="/phpmyadmin-dev" />
    </php>
3. Start the selenium server
4. Run $ phpunit test/AllSeleniumTests.php

Note: Only PmaSeleniumLoginTest.php is fixed and added to the test suit.