Merge "Add support for 'hu-formal'"
[lhc/web/wiklou.git] / tests / selenium / README.md
1 # Selenium tests
2
3 ## Prerequisites
4
5 - [Chrome](https://www.google.com/chrome/)
6 - [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/)
7 - [Node.js](https://nodejs.org/en/)
8 - [MediaWiki-Vagrant](https://www.mediawiki.org/wiki/MediaWiki-Vagrant)
9
10 Set up MediaWiki-Vagrant:
11
12 cd mediawiki/vagrant
13 vagrant up
14
15 ## Installation
16
17 cd mediawiki
18 npm install
19
20 ## Usage
21
22 npm run selenium
23
24 To run only one file (for example page.js), you first need to spawn the chromedriver:
25
26 chromedriver --url-base=wd/hub --port=4444
27
28 Then in another terminal:
29
30 cd tests/selenium
31 ../../node_modules/.bin/wdio --spec specs/page.js
32
33 To run only one test (name contains string 'preferences'):
34
35 ../../node_modules/.bin/wdio --spec specs/user.js --mochaOpts.grep preferences
36
37 The runner reads the config file `wdio.conf.js` and runs the spec listed in
38 `page.js`.
39
40 The defaults in the configuration files aim are targeting a MediaWiki-Vagrant
41 installation on http://127.0.0.1:8080 with a user Admin and
42 password 'vagrant'. Those settings can be overridden using environment
43 variables:
44
45 `MW_SERVER`: to be set to the value of your $wgServer
46 `MW_SCRIPT_PATH`: ditto with $wgScriptPath
47 `MEDIAWIKI_USER`: username of an account that can create users on the wiki
48 `MEDIAWIKI_PASSWORD`: password for above user
49
50 Example:
51
52 MW_SERVER=http://example.org MW_SCRIPT_PATH=/dev/w npm run selenium
53
54 ## Links
55
56 - [Selenium/Node.js](https://www.mediawiki.org/wiki/Selenium/Node.js)