mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
export class Toasts {
|
|
// selectors
|
|
toastSlot = ".b-toaster-slot";
|
|
toastTypeSuccess = ".b-toast-success";
|
|
toastTypeError = ".b-toast-danger";
|
|
toastTitle = ".gdd-toaster-title";
|
|
toastMessage = ".gdd-toaster-body";
|
|
}
|