svgedit/cypress/support/ui-test-helper.js

33 lines
894 B
JavaScript
Raw Normal View History

export const approveStorage = () => {
cy.get('#storage_ok').click()
}
export const visitAndApproveStorage = () => {
cy.viewport(512, 512)
cy.visit('/instrumented/editor/index.html')
approveStorage()
}
export const openMainMenu = () => {
return cy.get('#main_button').click({ force: true })
}
export const openEditorPreferences = () => {
openMainMenu()
return cy.get('#tool_editor_prefs').click()
}
export const selectEnglish = () => {
openEditorPreferences()
cy.get('#lang_select').select('en')
cy.get('#tool_prefs_save').click()
}
2021-12-30 08:29:49 +00:00
export const testSnapshot = () => {
cy.window().then((win) => { // access to the remote Window so we can get the svgEditor variable
2021-12-30 10:38:10 +00:00
const svgString = win.svgEditor.svgCanvas.getSvgString()
const svgDom = new DOMParser().parseFromString(svgString, 'text/html').querySelector('body')
cy.wrap(svgDom).toMatchSnapshot()
2021-12-30 08:29:49 +00:00
})
}