Merge "Resolve successful 1-chunk uploads"
[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 The runner reads the config file `wdio.conf.js` and runs the spec listed in
34 `page.js`.
35
36 The defaults in the configuration files aim are targetting a MediaWiki-Vagrant
37 installation on installation on http://127.0.0.1:8080 with a user Admin and
38 password 'vagrant'. Those settings can be overriden using environment
39 variables:
40
41 `MW_SERVER`: to be set to the value of your $wgServer
42 `MW_SCRIPT_PATH`: ditto with $wgScriptPath
43 `MEDIAWIKI_USER`: username of an account that can create users on the wiki.
44 `MEDIAWIKI_PASSWORD`: password for above user
45
46 Example:
47
48 MW_SERVER=http://example.org MW_SCRIPT_PATH=/dev/w npm run selenium
49
50 ## Links
51
52 - [Selenium/Node.js](https://www.mediawiki.org/wiki/Selenium/Node.js)