phpmyadmin/test/selenium
2013-08-21 21:38:26 +05:30
..
Helper.php Merge Helper and PmaSeleniumTestCase classes 2013-08-21 21:38:26 +05:30
PmaSeleniumCreateDropDatabaseTest.php Merge Helper and PmaSeleniumTestCase classes 2013-08-21 21:38:26 +05:30
PmaSeleniumCreateRemoveUserTest.php Fix test case for user creating and removal 2013-08-21 21:37:49 +05:30
PmaSeleniumLoginTest.php Merge Helper and PmaSeleniumTestCase classes 2013-08-21 21:38:26 +05:30
PmaSeleniumPrivilegesTest.php Merge Helper and PmaSeleniumTestCase classes 2013-08-21 21:38:26 +05:30
PmaSeleniumTablesBrowseDataTest.php Fix test case for double click 2013-08-21 21:36:51 +05:30
PmaSeleniumTablesInsertDataTest.php Merge Helper and PmaSeleniumTestCase classes 2013-08-21 21:38:26 +05:30
PmaSeleniumTablesTest.php Merge Helper and PmaSeleniumTestCase classes 2013-08-21 21:38:26 +05:30
PmaSeleniumXssTest.php Merge Helper and PmaSeleniumTestCase classes 2013-08-21 21:38:26 +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.