mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-27 03:58:02 -05:00
36e445e631
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
32 lines
785 B
TypeScript
32 lines
785 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
getIframeBody(): Chainable<Element>
|
|
getReveal(): Chainable<Element>
|
|
getMarkdownBody(): Chainable<Element>
|
|
}
|
|
}
|
|
|
|
Cypress.Commands.add('getIframeBody', () => {
|
|
return cy
|
|
.get(`iframe[data-cy="documentIframe"][data-content-ready="true"]`)
|
|
.should('be.visible')
|
|
.its('0.contentDocument')
|
|
.should('exist')
|
|
.its('body')
|
|
.should('not.be.undefined')
|
|
.then(cy.wrap.bind(cy))
|
|
})
|
|
|
|
Cypress.Commands.add('getReveal', () => {
|
|
return cy.getIframeBody().find('.reveal')
|
|
})
|
|
|
|
Cypress.Commands.add('getMarkdownBody', () => {
|
|
return cy.getIframeBody().find('.markdown-body')
|
|
})
|