Files
n8n-enterprise-unlocked/cypress/pages/npsSurvey.ts
2025-07-25 17:26:40 +02:00

18 lines
471 B
TypeScript

/**
* Getters
*/
export const getNpsSurvey = () => cy.getByTestId('nps-survey-modal');
export const getNpsSurveyRatings = () => cy.getByTestId('nps-survey-ratings');
export const getNpsSurveyFeedback = () => cy.getByTestId('nps-survey-feedback');
export const getNpsSurveySubmit = () => cy.getByTestId('nps-survey-feedback-button');
export const getNpsSurveyClose = () =>
cy.getByTestId('nps-survey-modal').find('button.el-drawer__close-btn');
/**
* Actions
*/