mediawiki_selenium 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitreview +6 -0
- data/CREDITS +12 -0
- data/LICENSE +380 -0
- data/README.md +76 -0
- data/docs/UploadWizard.md +54 -0
- data/docs/jenkins-email.template +89 -0
- data/docs/jenkins.md +30 -0
- data/docs/job.md +34 -0
- data/docs/jobs.md +260 -0
- data/docs/template.md +301 -0
- data/docs/view.md +11 -0
- data/lib/mediawiki_selenium.rb +16 -0
- data/lib/mediawiki_selenium/env.rb +163 -0
- data/lib/mediawiki_selenium/hooks.rb +38 -0
- data/lib/mediawiki_selenium/sauce.rb +28 -0
- data/lib/mediawiki_selenium/version.rb +14 -0
- data/mediawiki_selenium.gemspec +28 -0
- metadata +183 -0
@@ -0,0 +1,54 @@
|
|
1
|
+
# UploadWizard-commons.wikimedia.org
|
2
|
+
|
3
|
+
- Jenkins > New Job
|
4
|
+
- Job name: UploadWizard-commons.wikimedia.org
|
5
|
+
- Build a free-style software project
|
6
|
+
- OK
|
7
|
+
- Jenkins > Job > Configure
|
8
|
+
- Source Code Management > Git > Repositories > Repository URL: https://gerrit.wikimedia.org/r/mediawiki/extensions/UploadWizard
|
9
|
+
- Build Triggers > Build periodically > Schedule: H */6 * * * (every 6 hours)
|
10
|
+
- Build > Add build step > Execute shell
|
11
|
+
|
12
|
+
--
|
13
|
+
|
14
|
+
set -e
|
15
|
+
export MEDIAWIKI_PASSWORD_VARIABLE=MEDIAWIKI_PASSWORD_SELENIUM_USER_WIKIPEDIA_ORG
|
16
|
+
virtualenv --distribute DEV
|
17
|
+
DEV/bin/pip install -rtests/api/requirements.txt
|
18
|
+
DEV/bin/python tests/api/upload-wizard_tests.py --username "Selenium_user" --api_url "https://commons.wikimedia.org/w/api.php"
|
19
|
+
DEV/bin/python tests/api/upload-wizard_tests.py --gen_new_image --username "Selenium_user" --api_url "https://commons.wikimedia.org/w/api.php"
|
20
|
+
|
21
|
+
--
|
22
|
+
|
23
|
+
- Add post-build action
|
24
|
+
- E-mail Notification > Recipients > aarcos.wiki@gmail.com cmcmahon@wikimedia.org gtisza@wikimedia.org zfilipin@wikimedia.org
|
25
|
+
- IRC Notification (notifies #wikimedia-qa by default)
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
# UploadWizard-commons.wikimedia.beta.wmflabs.org
|
30
|
+
|
31
|
+
- Jenkins > New Job
|
32
|
+
- Job name: UploadWizard-commons.wikimedia.beta.wmflabs.org
|
33
|
+
- Build a free-style software project
|
34
|
+
- OK
|
35
|
+
- Jenkins > Job > Configure
|
36
|
+
- Source Code Management > Git > Repositories > Repository URL: https://gerrit.wikimedia.org/r/mediawiki/extensions/UploadWizard
|
37
|
+
- Build Triggers > Build periodically > Schedule: H */6 * * * (every 6 hours)
|
38
|
+
- Build Triggers > Poll SCM > Schedule > * * * * * (every minute)
|
39
|
+
- Build > Add build step > Execute shell
|
40
|
+
|
41
|
+
--
|
42
|
+
|
43
|
+
set -e
|
44
|
+
export MEDIAWIKI_PASSWORD_VARIABLE=MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
45
|
+
virtualenv --distribute DEV
|
46
|
+
DEV/bin/pip install -rtests/api/requirements.txt
|
47
|
+
DEV/bin/python tests/api/upload-wizard_tests.py --username "Selenium_user" --api_url "http://commons.wikimedia.beta.wmflabs.org/w/api.php"
|
48
|
+
DEV/bin/python tests/api/upload-wizard_tests.py --gen_new_image --username "Selenium_user" --api_url "http://commons.wikimedia.beta.wmflabs.org/w/api.php"
|
49
|
+
|
50
|
+
--
|
51
|
+
|
52
|
+
- Add post-build action
|
53
|
+
- E-mail Notification > Recipients > aarcos.wiki@gmail.com cmcmahon@wikimedia.org gtisza@wikimedia.org zfilipin@wikimedia.org
|
54
|
+
- IRC Notification (notifies #wikimedia-qa by default)
|
@@ -0,0 +1,89 @@
|
|
1
|
+
<STYLE>
|
2
|
+
BODY, TABLE, TD, TH, P {
|
3
|
+
font-family: Verdana, Helvetica, sans serif;
|
4
|
+
font-size: 11px;
|
5
|
+
color: black;
|
6
|
+
}
|
7
|
+
h1 {
|
8
|
+
color: black;
|
9
|
+
}
|
10
|
+
h2 {
|
11
|
+
color: black;
|
12
|
+
}
|
13
|
+
h3 {
|
14
|
+
color: black;
|
15
|
+
}
|
16
|
+
TD.bg1 {
|
17
|
+
font-size: 120%
|
18
|
+
}
|
19
|
+
TD.bg2 {
|
20
|
+
font-size: 110%
|
21
|
+
}
|
22
|
+
TD.bg3 {
|
23
|
+
}
|
24
|
+
TD.test_passed {
|
25
|
+
color: blue;
|
26
|
+
}
|
27
|
+
TD.test_failed {
|
28
|
+
color: red;
|
29
|
+
}
|
30
|
+
TD.console {
|
31
|
+
font-family: Courier New;
|
32
|
+
}
|
33
|
+
</STYLE>
|
34
|
+
<BODY>
|
35
|
+
<TABLE>
|
36
|
+
<TR>
|
37
|
+
<TD align="left"><B style="font-size: 250%;"> <span style="color:<%= build.result.toString() == 'SUCCESS' ? 'blue' : build.result.toString() == 'FAILURE' ? 'red' : 'yellow' %>">${build.result}:</span> ${project.name} Build #<A href="${rooturl}${build.url}">${build.number}</A> (${it.timestampString})</B></TD>
|
38
|
+
</TR>
|
39
|
+
</TABLE>
|
40
|
+
<BR/>
|
41
|
+
|
42
|
+
<!-- JUnit TEMPLATE -->
|
43
|
+
|
44
|
+
<% def junitResultList = it.JUnitTestResult
|
45
|
+
if (junitResultList.size() > 0) { %>
|
46
|
+
<TD><H1><A href="${rooturl}${build.url}testReport/"><B>Test Result</B></A></H1>
|
47
|
+
<DIV>
|
48
|
+
<DIV>
|
49
|
+
${build.testResultAction.getFailCount()} failed, ${build.testResultAction.getSkipCount()} skipped
|
50
|
+
</DIV>
|
51
|
+
<div style="width:100%; height:1em; background-color: #729FCF">
|
52
|
+
<div style="width:${ build.testResultAction.getFailCount() / build.testResultAction.getTotalCount() * 100 }%; height: 1em; background-color: #EF2929; float: left"></div><div style="width:${ build.testResultAction.getSkipCount() / build.testResultAction.getTotalCount() * 100 }%; height: 1em; background-color: #FCE94F; float: left"></div>
|
53
|
+
</div>
|
54
|
+
<h2>Failed Tests</h2>
|
55
|
+
<Table border="1" style="border-collapse: collapse; border-spacing: 2px; border-color: gray; white-space: nowrap; width: 100%;">
|
56
|
+
<tr>
|
57
|
+
<Td><b>Test Name</B></td><td style="width:5m"><B>Duration</B></td><Td style="width:5em"><b>Age</b></td>
|
58
|
+
</tr>
|
59
|
+
<% it.JUnitTestResult.each { junitResult ->
|
60
|
+
junitResult.getChildren().each { packageResult -> %>
|
61
|
+
|
62
|
+
<% packageResult.getFailedTests().each{ failed_test -> %>
|
63
|
+
<tr>
|
64
|
+
<Td><A href="${rooturl}${build.url}testReport${failed_test.getUrl()}">${failed_test.getFullName()}</A></td><td>${failed_test.getDurationString()}</td><Td><A href="${rooturl}${project.url}${build.number - failed_test.getAge()}/">${failed_test.getAge()}</A></td>
|
65
|
+
</tr>
|
66
|
+
<% } %>
|
67
|
+
|
68
|
+
<% }
|
69
|
+
} %>
|
70
|
+
</table>
|
71
|
+
<h2>All Tests</h2>
|
72
|
+
<table border="1" style="border-collapse: collapse; border-spacing: 2px; border-color: gray; white-space: nowrap; width: 100%;">
|
73
|
+
<tr>
|
74
|
+
<Td><b>Package</B></td><td style="width:6em"><B>Duration</B></td><td style="width:5em"><b>Fail</b></td><td style="width:5em"><b>Skip</b></td><Td style="width:5em"><b>Total</b></td>
|
75
|
+
</tr>
|
76
|
+
<% it.JUnitTestResult.each { junitResult ->
|
77
|
+
junitResult.getChildren().each { packageResult -> %>
|
78
|
+
|
79
|
+
<tr>
|
80
|
+
<Td><A href="${rooturl}${build.url}testReport${packageResult.getUrl()}">${packageResult.getName()}</a></td><td>${packageResult.getDurationString()}</td><td>${packageResult.getFailCount()}</td><td>${packageResult.getSkipCount()}</td><td>${packageResult.getTotalCount()}</td>
|
81
|
+
</tr>
|
82
|
+
|
83
|
+
<% }
|
84
|
+
} %>
|
85
|
+
</table>
|
86
|
+
<BR/>
|
87
|
+
<% } %>
|
88
|
+
</BODY>
|
89
|
+
|
data/docs/jenkins.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Jenkins
|
2
|
+
|
3
|
+
## Plugins
|
4
|
+
|
5
|
+
- Jenkins > Manage Jenkins > Manage Plugins > Available > ChuckNorris Plugin, Green Balls, Jenkins Email Extension Plugin, Jenkins instant-messaging plugin, Jenkins IRC Plugin
|
6
|
+
|
7
|
+
## IRC Notification
|
8
|
+
|
9
|
+
- Jenkins > Manage Jenkins > Configure System
|
10
|
+
- Enable IRC Notification > check
|
11
|
+
- Hostname: irc.freenode.net
|
12
|
+
- Port: 6667
|
13
|
+
- Channels
|
14
|
+
- Name: #wikimedia-qa
|
15
|
+
- Notification only: check
|
16
|
+
- Advanced...
|
17
|
+
- Nickname: wmf-selenium-bot
|
18
|
+
- Login: wmf-selenium-bot
|
19
|
+
- nickname and login have to be the same
|
20
|
+
|
21
|
+
## Environment variables
|
22
|
+
|
23
|
+
- Jenkins > Manage Jenkins > Configure System > Global properties > Environment variables > List of key-value pairs
|
24
|
+
- name
|
25
|
+
- SAUCE_ONDEMAND_ACCESS_KEY
|
26
|
+
- SAUCE_ONDEMAND_USERNAME
|
27
|
+
- MEDIAWIKI_PASSWORD_SELENIUM_SANDBOX_TRANSLATEWIKI_NET
|
28
|
+
- MEDIAWIKI_PASSWORD_SELENIUM_USER_WIKIPEDIA_ORG
|
29
|
+
- MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
30
|
+
- MEDIAWIKI_PASSWORD_ULS_WMFLABS_ORG
|
data/docs/job.md
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# Job
|
2
|
+
|
3
|
+
- Jenkins > New Job
|
4
|
+
- Job name: (name)
|
5
|
+
- Build a free-style software project
|
6
|
+
- OK
|
7
|
+
- Jenkins > Job > Configure
|
8
|
+
- Project name: (name)
|
9
|
+
- Source Code Management > Git > Repositories > Repository URL: (repository)
|
10
|
+
- Build > Add build step > Execute shell
|
11
|
+
|
12
|
+
--
|
13
|
+
|
14
|
+
export MEDIAWIKI_USER=${MEDIAWIKI_USER}
|
15
|
+
export MEDIAWIKI_PASSWORD_VARIABLE=${MEDIAWIKI_PASSWORD_VARIABLE}
|
16
|
+
|
17
|
+
export BROWSER_LABEL=${BROWSER_LABEL}
|
18
|
+
export MEDIAWIKI_URL=http://${MEDIAWIKI_URL}/wiki/
|
19
|
+
|
20
|
+
curl -s -o use-ruby https://repository-cloudbees.forge.cloudbees.com/distributions/ci-addons/ruby/use-ruby
|
21
|
+
RUBY_VERSION=2.1.0 \
|
22
|
+
source ./use-ruby
|
23
|
+
|
24
|
+
gem install bundler --no-ri --no-rdoc
|
25
|
+
if [ -d "${FOLDER}" ]; then cd ${FOLDER}; fi
|
26
|
+
bundle install
|
27
|
+
bundle exec ${BUNDLE_EXEC}
|
28
|
+
|
29
|
+
--
|
30
|
+
|
31
|
+
- Post-build Actions > Add post-build action
|
32
|
+
- Publish JUnit test result report > Test report XMLs: reports/junit/*.xml
|
33
|
+
- E-mail Notification > Recipients: (recipients)
|
34
|
+
- IRC Notification
|
data/docs/jobs.md
ADDED
@@ -0,0 +1,260 @@
|
|
1
|
+
# all jobs
|
2
|
+
- Browser Label:
|
3
|
+
- bundle exec cucumber:
|
4
|
+
- Recipients:
|
5
|
+
- MediaWiki URL:
|
6
|
+
- Folder:
|
7
|
+
- Repository URL:
|
8
|
+
- MediaWiki user:
|
9
|
+
- MediaWiki password variable:
|
10
|
+
- Build schedule: 0 3,18 * * *
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
# browsertests
|
15
|
+
- Recipients: cmcmahon@wikimedia.org zfilipin@wikimedia.org
|
16
|
+
- Folder: root of the repository
|
17
|
+
- Repository URL: browsertests
|
18
|
+
- MediaWiki user: Selenium_user
|
19
|
+
|
20
|
+
|
21
|
+
# browsertests-commons.wikimedia.beta.wmflabs.org
|
22
|
+
- MediaWiki URL: commons.wikimedia.beta.wmflabs.org
|
23
|
+
- bundle exec cucumber: --tags @commons.wikimedia.beta.wmflabs.org
|
24
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
25
|
+
|
26
|
+
## browsertests-commons.wikimedia.beta.wmflabs.org-linux-chrome
|
27
|
+
- Browser Label: chrome
|
28
|
+
|
29
|
+
## browsertests-commons.wikimedia.beta.wmflabs.org-linux-firefox
|
30
|
+
- Browser Label: firefox
|
31
|
+
|
32
|
+
## browsertests-commons.wikimedia.beta.wmflabs.org-windows-internet_explorer_9
|
33
|
+
- Browser Label: internet_explorer_9
|
34
|
+
|
35
|
+
## browsertests-commons.wikimedia.beta.wmflabs.org-windows-internet_explorer_10
|
36
|
+
- Browser Label: internet_explorer_10
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
# browsertests-en.wikipedia.beta.wmflabs.org
|
41
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org
|
42
|
+
- MediaWiki URL: en.wikipedia.beta.wmflabs.org
|
43
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
44
|
+
|
45
|
+
## browsertests-en.wikipedia.beta.wmflabs.org-linux-chrome
|
46
|
+
- Browser Label: chrome
|
47
|
+
|
48
|
+
## browsertests-en.wikipedia.beta.wmflabs.org-linux-firefox
|
49
|
+
- Browser Label: firefox
|
50
|
+
|
51
|
+
## browsertests-en.wikipedia.beta.wmflabs.org-windows-internet_explorer_6
|
52
|
+
- Browser Label: internet_explorer_6
|
53
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org --tags ~@ie6-bug
|
54
|
+
|
55
|
+
## browsertests-en.wikipedia.beta.wmflabs.org-windows-internet_explorer_7
|
56
|
+
- Browser Label: internet_explorer_7
|
57
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org --tags ~@ie7-bug
|
58
|
+
|
59
|
+
## browsertests-en.wikipedia.beta.wmflabs.org-windows-internet_explorer_8
|
60
|
+
- Browser Label: internet_explorer_8
|
61
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org --tags ~@ie8-bug
|
62
|
+
|
63
|
+
## browsertests-en.wikipedia.beta.wmflabs.org-windows-internet_explorer_9
|
64
|
+
- Browser Label: internet_explorer_9
|
65
|
+
|
66
|
+
## browsertests-en.wikipedia.beta.wmflabs.org-windows-internet_explorer_10
|
67
|
+
- Browser Label: internet_explorer_10
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
# browsertests-test2.wikipedia.org
|
72
|
+
- bundle exec cucumber: --tags @test2.wikipedia.org
|
73
|
+
- MediaWiki URL: test2.wikipedia.org
|
74
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WIKIPEDIA_ORG
|
75
|
+
|
76
|
+
## browsertests-test2.wikipedia.org-linux-chrome
|
77
|
+
- Browser Label: chrome
|
78
|
+
|
79
|
+
## browsertests-test2.wikipedia.org-linux-firefox
|
80
|
+
- Browser Label: firefox
|
81
|
+
|
82
|
+
## browsertests-test2.wikipedia.org-windows-internet_explorer_6
|
83
|
+
- Browser Label: internet_explorer_6
|
84
|
+
- bundle exec cucumber: --tags @test2.wikipedia.org --tags ~@ie6-bug
|
85
|
+
|
86
|
+
## browsertests-test2.wikipedia.org-windows-internet_explorer_7
|
87
|
+
- Browser Label: internet_explorer_7
|
88
|
+
- bundle exec cucumber: --tags @test2.wikipedia.org --tags ~@ie7-bug
|
89
|
+
|
90
|
+
## browsertests-test2.wikipedia.org-windows-internet_explorer_8
|
91
|
+
- Browser Label: internet_explorer_8
|
92
|
+
- bundle exec cucumber: --tags @test2.wikipedia.org --tags ~@ie8-bug
|
93
|
+
|
94
|
+
## browsertests-test2.wikipedia.org-windows-internet_explorer_9
|
95
|
+
- Browser Label: internet_explorer_9
|
96
|
+
|
97
|
+
## browsertests-test2.wikipedia.org-windows-internet_explorer_10
|
98
|
+
- Browser Label: internet_explorer_10
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
# Flow
|
103
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org
|
104
|
+
- Recipients: zfilipin@wikimedia.org cmcmahon@wikimedia.org
|
105
|
+
- MediaWiki URL: en.m.wikipedia.beta.wmflabs.org
|
106
|
+
- Folder: tests/browser/
|
107
|
+
- Repository URL: Flow
|
108
|
+
- MediaWiki user: Selenium_user
|
109
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
110
|
+
|
111
|
+
|
112
|
+
## Flow-en.wikipedia.beta.wmflabs.org-linux-chrome
|
113
|
+
- Browser Label: chrome
|
114
|
+
|
115
|
+
## Flow-en.wikipedia.beta.wmflabs.org-linux-firefox
|
116
|
+
- Browser Label: firefox
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
# MobileFrontend
|
121
|
+
- Recipients: cmcmahon@wikimedia.org jhall@wikimedia.org mobile-l@lists.wikimedia.org mobile-tech@wikimedia.org zfilipin@wikimedia.org
|
122
|
+
- Folder: tests/browser/
|
123
|
+
- Repository URL: MobileFrontend
|
124
|
+
- MediaWiki user: Selenium_user
|
125
|
+
|
126
|
+
## MobileFrontend-en.m.wikipedia.beta.wmflabs.org-linux-chrome
|
127
|
+
- Browser Label: chrome
|
128
|
+
- bundle exec cucumber: --tags @en.m.wikipedia.beta.wmflabs.org
|
129
|
+
- MediaWiki URL: en.m.wikipedia.beta.wmflabs.org
|
130
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
131
|
+
|
132
|
+
## MobileFrontend-en.m.wikipedia.beta.wmflabs.org-linux-firefox
|
133
|
+
- Browser Label: firefox
|
134
|
+
- bundle exec cucumber: --tags @en.m.wikipedia.beta.wmflabs.org
|
135
|
+
- MediaWiki URL: en.m.wikipedia.beta.wmflabs.org
|
136
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
137
|
+
|
138
|
+
## MobileFrontend-en.m.wikipedia.org-linux-firefox
|
139
|
+
- Browser Label: firefox
|
140
|
+
- bundle exec cucumber: --tags @en.m.wikipedia.org
|
141
|
+
- MediaWiki URL: en.m.wikipedia.org
|
142
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WIKIPEDIA_ORG
|
143
|
+
|
144
|
+
## MobileFrontend-test2.m.wikipedia.org-linux-firefox
|
145
|
+
- Browser Label: firefox
|
146
|
+
- bundle exec cucumber: --tags @test2.m.wikipedia.org
|
147
|
+
- MediaWiki URL: test2.m.wikipedia.org
|
148
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WIKIPEDIA_ORG
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
# MultimediaViewer
|
153
|
+
|
154
|
+
## MultimediaViewer-en.wikipedia.beta.wmflabs.org-linux-firefox
|
155
|
+
- Browser Label: firefox
|
156
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org
|
157
|
+
- Recipients: aarcos.wiki@gmail.com cmcmahon@wikimedia.org jhall@wikimedia.org zfilipin@wikimedia.org
|
158
|
+
- MediaWiki URL: en.wikipedia.beta.wmflabs.org
|
159
|
+
- Folder: tests/browser/
|
160
|
+
- Repository URL: MultimediaViewer
|
161
|
+
- MediaWiki user: Selenium_user
|
162
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
163
|
+
- Build schedule: 0 3,18 * * *
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
# Translate
|
168
|
+
- Browser Label: firefox
|
169
|
+
- Folder: tests/browser/
|
170
|
+
- Recipients: aaharoni@wikimedia.org cmcmahon@wikimedia.org nlaxstrom@wikimedia.org zfilipin@wikimedia.org
|
171
|
+
- Repository URL: Translate
|
172
|
+
|
173
|
+
## Translate-sandbox.translatewiki.net-linux-firefox
|
174
|
+
- bundle exec cucumber: --tags @sandbox.translatewiki.net
|
175
|
+
- MediaWiki URL: sandbox.translatewiki.net
|
176
|
+
- MediaWiki user: Selenium-Translate
|
177
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_SANDBOX_TRANSLATE_TRANSLATEWIKI_NET
|
178
|
+
|
179
|
+
## Translate-meta.wikimedia.org-linux-firefox
|
180
|
+
- bundle exec cucumber: --tags @meta.wikimedia.org
|
181
|
+
- MediaWiki URL: meta.wikimedia.org
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
# TwnMainPage
|
186
|
+
|
187
|
+
|
188
|
+
## TwnMainPage-sandbox.translatewiki.net-linux-firefox
|
189
|
+
- Browser Label: firefox
|
190
|
+
- bundle exec cucumber: --tags @sandbox.translatewiki.net
|
191
|
+
- Recipients: aaharoni@wikimedia.org cmcmahon@wikimedia.org nlaxstrom@wikimedia.org zfilipin@wikimedia.org
|
192
|
+
- MediaWiki URL: sandbox.translatewiki.net
|
193
|
+
- Folder: tests/browser/
|
194
|
+
- Repository URL: TwnMainPage
|
195
|
+
- MediaWiki user: Selenium
|
196
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_SANDBOX_TRANSLATEWIKI_NET
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
# UniversalLanguageSelector
|
202
|
+
- Browser Label: firefox
|
203
|
+
- Recipients: aaharoni@wikimedia.org cmcmahon@wikimedia.org nlaxstrom@wikimedia.org sthottingal@wikimedia.org zfilipin@wikimedia.org
|
204
|
+
- Folder: tests/browser/
|
205
|
+
- Repository URL: UniversalLanguageSelector
|
206
|
+
|
207
|
+
|
208
|
+
## UniversalLanguageSelector-commons.wikimedia.beta.wmflabs.org-linux-firefox
|
209
|
+
- bundle exec cucumber: --tags @commons.wikimedia.beta.wmflabs.org
|
210
|
+
- MediaWiki URL: commons.wikimedia.beta.wmflabs.org
|
211
|
+
- MediaWiki user: Uls
|
212
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_ULS_WMFLABS_ORG
|
213
|
+
|
214
|
+
## UniversalLanguageSelector-en.wikipedia.beta.wmflabs.org-linux-firefox
|
215
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org
|
216
|
+
- MediaWiki URL: en.wikipedia.beta.wmflabs.org
|
217
|
+
- MediaWiki user: Uls
|
218
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_ULS_WMFLABS_ORG
|
219
|
+
|
220
|
+
## UniversalLanguageSelector-sandbox.translatewiki.net-linux-firefox
|
221
|
+
- bundle exec cucumber: --tags @sandbox.translatewiki.net
|
222
|
+
- MediaWiki URL: sandbox.translatewiki.net
|
223
|
+
- MediaWiki user: Selenium
|
224
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_SANDBOX_TRANSLATEWIKI_NET
|
225
|
+
|
226
|
+
|
227
|
+
|
228
|
+
# VisualEditor
|
229
|
+
- Folder: modules/ve-mw/test/browser/
|
230
|
+
- Repository URL: VisualEditor
|
231
|
+
- MediaWiki user: Selenium_user
|
232
|
+
|
233
|
+
|
234
|
+
## VisualEditor-en.wikipedia.beta.wmflabs.org-linux-chrome
|
235
|
+
- Browser Label: chrome
|
236
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org
|
237
|
+
- Recipients: cmcmahon@wikimedia.org jhall@wikimedia.org zfilipin@wikimedia.org
|
238
|
+
- MediaWiki URL: en.wikipedia.beta.wmflabs.org
|
239
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
240
|
+
|
241
|
+
## VisualEditor-en.wikipedia.beta.wmflabs.org-linux-firefox
|
242
|
+
- Browser Label: firefox
|
243
|
+
- bundle exec cucumber: --tags @en.wikipedia.beta.wmflabs.org
|
244
|
+
- Recipients: cmcmahon@wikimedia.org jforrester@wikimedia.org jhall@wikimedia.org zfilipin@wikimedia.org
|
245
|
+
- MediaWiki URL: en.wikipedia.beta.wmflabs.org
|
246
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WMFLABS_ORG
|
247
|
+
|
248
|
+
## VisualEditor-test2.wikipedia.org-linux-chrome
|
249
|
+
- Browser Label: chrome
|
250
|
+
- bundle exec cucumber: --tags @test2.wikipedia.org
|
251
|
+
- Recipients: cmcmahon@wikimedia.org jhall@wikimedia.org zfilipin@wikimedia.org
|
252
|
+
- MediaWiki URL: test2.wikipedia.org
|
253
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WIKIPEDIA_ORG
|
254
|
+
|
255
|
+
## VisualEditor-test2.wikipedia.org-linux-firefox
|
256
|
+
- Browser Label: firefox
|
257
|
+
- bundle exec cucumber: --tags @test2.wikipedia.org
|
258
|
+
- Recipients: cmcmahon@wikimedia.org jforrester@wikimedia.org jhall@wikimedia.org zfilipin@wikimedia.org
|
259
|
+
- MediaWiki URL: test2.wikipedia.org
|
260
|
+
- MediaWiki password variable: MEDIAWIKI_PASSWORD_SELENIUM_USER_WIKIPEDIA_ORG
|