phpmyadmin/test/selenium
2013-08-21 12:26:36 +05:30
..
Helper.php Docblocks added for selenium test classes 2013-03-04 10:36:05 +05:30
PmaSeleniumCreateDropDatabaseTest.php Improve current database test 2013-08-15 17:26:14 +05:30
PmaSeleniumCreateRemoveUserTest.php Docblocks added for selenium test classes 2013-03-04 10:36:05 +05:30
PmaSeleniumLoginTest.php Docblocks added for selenium test classes 2013-03-04 10:36:05 +05:30
PmaSeleniumPrivilegesTest.php Docblocks added for selenium test classes 2013-03-04 10:36:05 +05:30
PmaSeleniumTablesBrowseDataTest.php Selenium tests for table browse functions 2013-08-17 17:52:59 +05:30
PmaSeleniumTablesInsertDataTest.php Proper parameter order 2013-08-21 12:26:36 +05:30
PmaSeleniumTablesTest.php Add teardown and fix mysql error 2013-08-15 20:14:41 +05:30
PmaSeleniumTestCase.php Add teardown and fix mysql error 2013-08-15 20:14:41 +05:30
PmaSeleniumXssTest.php wrap long lines 2013-03-05 15:12:04 +01:00
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.