mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-28 15:27:03 +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');
|
|
}
|
|
}
|