This repository contains Selenium tests for the Wikia App.
- Make sure you have Java and Maven installed on your system, if not follow the vendor instructions for installing them on your operating system.
- In order to run tests in CHROME browser make sure you have chromedriver and it is accessibile
- in Linux OS family it would be in /usr/bin/ for example
- in Windows OS family you should export your chromedriver localization to system path
Please remember to keep this repository up to date as the tests become worthless otherwise. A good rule of thumb is to add a new test that covers whatever bug you're fixing so we can track regressions on it. Also, make sure to code your tests in a cross-operating system compliant manor as it's valid to run them in Windows, Mac or Linux environments.
The following steps should get you set up for running Selenium tests locally on your machine:
- Clone this repository to your local machine (not your devbox).
- Clone selenium-config repository to the same folder (eg. myfolder/selenium-tests and myfolder/selenium-config)
- Create symlinks for
/selenium-config/config.xml
and/selenium-config/captcha.txt
(note the leading slash) that point to these files in your selenium-config repository. - Open up a terminal and navigate to the root directory of the repository.
Using Maven, you may now run any tests you want on whatever database and domain you want:
mvn clean test -Dbrowser=FF -Dbase-address=<address> -Dgroups=<group> -Dlive-domain=<address>
Example command:
mvn clean test -Dbrowser=FF -Dbase-address=http://mediawiki119.wikia.com/ -Dgroups=Login
If everything goes right it should log in as a QATestsUser.
The following are valid test parameters:
-Dbrowser
- Which browser to use, for example "CHROME"-Dbase-address
- The base URL to run in the browser, for example "http://yourname.wikia-dev.com/"-Dgroups
- (Optional) Which test groups to run, for example "Chat". Optional. Uses all tests if omitted-Dlive-domain
- (Optional) The base URL to run in the browser, for example "http://www.wikia.com/". Only required for Hubs tests
The following are valid for use in the -Dbrowser
parameter:
- FF
- CHROME
- IE
- GHOST (phantomjs)
The following are valid for use in the -Dgroups
parameter:
- ArticleCRUDAdmin
- ArticleCRUDAnonymous
- ArticleFeaturesCRUDAdmin
- CategoriesTestsAnonymous
- Chat
- CNW_lang
- CNW
- Hubs
- ImageServing
- Login
- MessageWall
- RTE
- Search
- Toolbar
Most tests write logs and take screenshots while they run which provide further information about what happened if they failed. These files reside in the ./logs
directory and can be viewed locally in your browser by navigating to that folder.