2023-11-29 03:13:55 -08:00
|
|
|
/**
|
|
|
|
* Getters
|
|
|
|
*/
|
|
|
|
|
|
|
|
export function getManualChatModal() {
|
|
|
|
return cy.getByTestId('lmChat-modal');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getManualChatInput() {
|
2024-07-09 04:45:41 -07:00
|
|
|
return getManualChatModal().get('.chat-inputs textarea');
|
2023-11-29 03:13:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getManualChatSendButton() {
|
2024-07-09 04:45:41 -07:00
|
|
|
return getManualChatModal().get('.chat-input-send-button');
|
2023-11-29 03:13:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getManualChatMessages() {
|
2024-07-09 04:45:41 -07:00
|
|
|
return getManualChatModal().get('.chat-messages-list .chat-message');
|
2023-11-29 03:13:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getManualChatModalCloseButton() {
|
|
|
|
return getManualChatModal().get('.el-dialog__close');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getManualChatModalLogs() {
|
|
|
|
return getManualChatModal().getByTestId('lm-chat-logs');
|
|
|
|
}
|
2024-03-21 01:23:15 -07:00
|
|
|
export function getManualChatDialog() {
|
|
|
|
return getManualChatModal().getByTestId('workflow-lm-chat-dialog');
|
|
|
|
}
|
2023-11-29 03:13:55 -08:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|