mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
3d538923a9
adding back semicolons * adding back semicolons
15 lines
366 B
TypeScript
15 lines
366 B
TypeScript
export default class MapsPage {
|
|
static isLoaded() {
|
|
return cy.findByTestId('create');
|
|
}
|
|
|
|
static create() {
|
|
return cy.findByTestId('create').click();
|
|
}
|
|
|
|
static isCreateDialogVisible() {
|
|
//TODO move to findByText when the double create dialog issue is solved
|
|
return cy.findAllByText('Create a new mindmap');
|
|
}
|
|
}
|