phpmyadmin/test/selenium
2012-09-22 23:50:41 +05:30
..
Helper.php Fix Checkstyle Warnings - Type: BraceOnSameLine 2012-04-13 21:50:26 +05:30
PmaSeleniumCreateDropDatabaseTest.php add create and drop database selenium test case 2012-07-23 22:12:36 +05:30
PmaSeleniumLoginTest.php fix typo, improve coding style 2012-04-06 16:28:44 +02:00
PmaSeleniumPrivilegesTest.php Fix spacing of @package used together with @subpackage 2012-05-02 11:29:34 +02:00
PmaSeleniumTestCase.php Use underscore prefix for private methods and instance variables 2012-09-22 23:50:41 +05:30
PmaSeleniumXssTest.php Fix spacing of @package used together with @subpackage 2012-05-02 11:29:34 +02:00
README fix typo, improve coding style 2012-04-06 16:28:44 +02:00
TestConfig.php Use underscore prefix for private methods and instance variables 2012-09-22 23:50:41 +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.