mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-05 09:57:27 -08:00
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
/**
|
|
* Getters
|
|
*/
|
|
|
|
export function getManualChatModal() {
|
|
return cy.getByTestId('canvas-chat');
|
|
}
|
|
|
|
export function getManualChatInput() {
|
|
return getManualChatModal().get('.chat-inputs textarea');
|
|
}
|
|
|
|
export function getManualChatSendButton() {
|
|
return getManualChatModal().get('.chat-input-send-button');
|
|
}
|
|
|
|
export function getManualChatMessages() {
|
|
return getManualChatModal().get('.chat-messages-list .chat-message');
|
|
}
|
|
|
|
export function getManualChatModalCloseButton() {
|
|
return cy.getByTestId('workflow-chat-button');
|
|
}
|
|
|
|
export function getManualChatModalLogs() {
|
|
return cy.getByTestId('canvas-chat-logs');
|
|
}
|
|
export function getManualChatDialog() {
|
|
return getManualChatModal().getByTestId('workflow-lm-chat-dialog');
|
|
}
|
|
|
|
export function getManualChatModalLogsTree() {
|
|
return getManualChatModalLogs().getByTestId('lm-chat-logs-tree');
|
|
}
|
|
|
|
export function getManualChatModalLogsEntries() {
|
|
return getManualChatModalLogs().getByTestId('lm-chat-logs-entry');
|
|
}
|
|
|
|
/**
|
|
* Actions
|
|
*/
|
|
|
|
export function sendManualChatMessage(message: string) {
|
|
getManualChatInput().type(message);
|
|
getManualChatSendButton().click();
|
|
}
|
|
|
|
export function closeManualChatModal() {
|
|
getManualChatModalCloseButton().click();
|
|
}
|