mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-27 23:07:12 +02:00
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import type { Locator } from '@playwright/test';
|
|
|
|
export class ChatHubSidebar {
|
|
constructor(private root: Locator) {}
|
|
|
|
getPersonalAgentButton() {
|
|
return this.root.getByRole('menuitem', { name: 'Personal agents' });
|
|
}
|
|
|
|
getConversations() {
|
|
return this.root.getByTestId('chat-conversation-list').getByRole('link');
|
|
}
|
|
}
|