2019-12-17 06:30:41 +08:00
|
|
|
// ***********************************************
|
|
|
|
// This example commands.js shows you how to
|
|
|
|
// create various custom commands and overwrite
|
|
|
|
// existing commands.
|
|
|
|
//
|
|
|
|
// For more comprehensive examples of custom
|
|
|
|
// commands please read more here:
|
|
|
|
// https://on.cypress.io/custom-commands
|
|
|
|
// ***********************************************
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a parent command --
|
|
|
|
// Cypress.Commands.add("login", (email, password) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a child command --
|
|
|
|
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a dual command --
|
|
|
|
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This will overwrite an existing command --
|
|
|
|
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
2020-09-12 05:17:40 +08:00
|
|
|
|
2020-09-15 15:03:08 +08:00
|
|
|
function defaults(object, name, value) {
|
|
|
|
if (!object) {
|
|
|
|
return {
|
|
|
|
[name]: value,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (object[name] === undefined) {
|
|
|
|
return {
|
|
|
|
...object,
|
|
|
|
[name]: value,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return object
|
|
|
|
}
|
|
|
|
|
2020-09-12 05:17:40 +08:00
|
|
|
Cypress.Commands.overwrite('trigger', (originalFn, element, text, options) => {
|
|
|
|
if (text === 'keydown') {
|
|
|
|
const isMac = Cypress.platform === 'darwin'
|
|
|
|
const { modKey, ...rest } = options
|
|
|
|
|
|
|
|
if (modKey) {
|
|
|
|
const newOptions = {
|
2020-09-15 15:03:08 +08:00
|
|
|
...defaults(rest, 'force', true),
|
2020-09-12 05:17:40 +08:00
|
|
|
...(isMac ? { metaKey: modKey } : { ctrlKey: modKey }),
|
|
|
|
}
|
|
|
|
|
|
|
|
return originalFn(element, text, newOptions)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return originalFn(element, text, options)
|
2020-09-15 15:03:08 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
Cypress.Commands.overwrite('type', (originalFn, element, text, options) => {
|
|
|
|
const newOptions = defaults(options, 'force', true)
|
|
|
|
|
|
|
|
return originalFn(element, text, newOptions)
|
|
|
|
})
|
|
|
|
|
|
|
|
Cypress.Commands.overwrite('click', (originalFn, element, text, options) => {
|
|
|
|
const newOptions = defaults(options, 'force', true)
|
|
|
|
|
|
|
|
return originalFn(element, text, newOptions)
|
2020-09-24 05:38:11 +08:00
|
|
|
})
|