mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-28 01:20:07 +00:00
09fe15e939
If LOG_DIR environment variable is set, create report there. If it is not set, create the report in 'a11y/'. Bug: T301184 Change-Id: I74fa6e8ee59d43e5a6e57083999107ac27446a62
71 lines
1.6 KiB
JavaScript
71 lines
1.6 KiB
JavaScript
// @ts-nocheck
|
|
const path = require( 'path' );
|
|
|
|
const testData = {
|
|
baseUrl: process.env.MW_SERVER,
|
|
pageUrl: '/wiki/Polar_bear?useskin=vector-2022',
|
|
loginUser: process.env.MEDIAWIKI_USER,
|
|
loginPassword: process.env.MEDIAWIKI_PASSWORD
|
|
};
|
|
|
|
module.exports = {
|
|
// LOG_DIR set in CI, used to make report files available in Jenkins
|
|
reportDir: process.env.LOG_DIR || path.join( process.cwd(), 'a11y/' ),
|
|
namespace: 'Vector',
|
|
defaults: {
|
|
viewport: {
|
|
width: 1200,
|
|
height: 1080
|
|
},
|
|
runners: [
|
|
'axe',
|
|
'htmlcs'
|
|
],
|
|
includeWarnings: true,
|
|
includeNotices: true,
|
|
hideElements: '#content',
|
|
chromeLaunchConfig: {
|
|
headless: true,
|
|
args: [
|
|
'--no-sandbox',
|
|
'--disable-setuid-sandbox'
|
|
]
|
|
}
|
|
},
|
|
tests: [
|
|
{
|
|
name: 'default',
|
|
url: testData.baseUrl + testData.pageUrl,
|
|
actions: [
|
|
'click #mw-sidebar-button'
|
|
]
|
|
},
|
|
{
|
|
name: 'logged_in',
|
|
url: testData.baseUrl + testData.pageUrl,
|
|
wait: '500',
|
|
actions: [
|
|
'click #p-personal-checkbox',
|
|
'wait for .vector-user-menu-login a to be visible',
|
|
'click .vector-user-menu-login a',
|
|
'wait for #wpName1 to be visible',
|
|
'set field #wpName1 to ' + testData.loginUser,
|
|
'set field #wpPassword1 to ' + testData.loginPassword,
|
|
'click #wpLoginAttempt',
|
|
'wait for #pt-userpage-2 to be visible' // Confirm login was successful
|
|
]
|
|
},
|
|
{
|
|
name: 'search',
|
|
url: testData.baseUrl + testData.pageUrl,
|
|
rootElement: '#p-search',
|
|
wait: '500',
|
|
actions: [
|
|
'click #searchInput',
|
|
'wait for .wvui-input__input to be added',
|
|
'set field .wvui-input__input to Test'
|
|
]
|
|
}
|
|
]
|
|
};
|