mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-29 22:54:21 -05:00
28 lines
602 B
TypeScript
28 lines
602 B
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||
|
*
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
declare namespace Cypress {
|
||
|
interface Chainable {
|
||
|
getById(id: string): Chainable<Element>
|
||
|
findById(id: string): Chainable<Element>
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const CYPRESS_ATTR = 'data-cypress-id'
|
||
|
|
||
|
Cypress.Commands.add('getById', (id: string) => {
|
||
|
return cy.get(`[${CYPRESS_ATTR}="${id}"]`)
|
||
|
})
|
||
|
|
||
|
Cypress.Commands.add(
|
||
|
'findById',
|
||
|
{
|
||
|
prevSubject: 'element'
|
||
|
},
|
||
|
(parent: JQuery<HTMLElement>, id: string) => {
|
||
|
return cy.wrap(parent).find(`[${CYPRESS_ATTR}="${id}"]`)
|
||
|
}
|
||
|
)
|