feat(editor): Redesign Canvas Chat (#11634)

This commit is contained in:
oleg
2024-11-13 11:05:19 +01:00
committed by GitHub
parent 93a6f858fa
commit a412ab7ebf
41 changed files with 2451 additions and 1063 deletions

View File

@@ -3,7 +3,7 @@
*/
export function getManualChatModal() {
return cy.getByTestId('lmChat-modal');
return cy.getByTestId('canvas-chat');
}
export function getManualChatInput() {
@@ -19,11 +19,11 @@ export function getManualChatMessages() {
}
export function getManualChatModalCloseButton() {
return getManualChatModal().get('.el-dialog__close');
return cy.getByTestId('workflow-chat-button');
}
export function getManualChatModalLogs() {
return getManualChatModal().getByTestId('lm-chat-logs');
return cy.getByTestId('canvas-chat-logs');
}
export function getManualChatDialog() {
return getManualChatModal().getByTestId('workflow-lm-chat-dialog');