import { Page, Locator, ElectronApplication } from '@playwright/test'; import NoteEditorScreen from './NoteEditorScreen'; import activateMainMenuItem from '../util/activateMainMenuItem'; import Sidebar from './Sidebar'; export default class MainScreen { public readonly newNoteButton: Locator; public readonly noteListContainer: Locator; public readonly sidebar: Sidebar; public readonly dialog: Locator; public readonly noteEditor: NoteEditorScreen; public constructor(private page: Page) { this.newNoteButton = page.locator('.new-note-button'); this.noteListContainer = page.locator('.rli-noteList'); this.sidebar = new Sidebar(page, this); this.dialog = page.locator('.dialog-root'); this.noteEditor = new NoteEditorScreen(page); } public async waitFor() { await this.newNoteButton.waitFor(); await this.noteListContainer.waitFor(); } // Follows the steps a user would use to create a new note. public async createNewNote(title: string) { await this.waitFor(); await this.newNoteButton.click(); await this.noteEditor.waitFor(); // Wait for the title input to have the correct placeholder await this.page.locator('input[placeholder^="Creating new note"]').waitFor(); // Fill the title await this.noteEditor.noteTitleInput.click(); await this.noteEditor.noteTitleInput.fill(title); return this.noteEditor; } public async openSettings(electronApp: ElectronApplication) { // Check both labels so this works on MacOS const openedWithPreferences = await activateMainMenuItem(electronApp, 'Preferences...'); const openedWithOptions = await activateMainMenuItem(electronApp, 'Options'); if (!openedWithOptions && !openedWithPreferences) { throw new Error('Unable to find settings menu item in application menus.'); } } public async search(text: string) { const searchBar = this.page.getByPlaceholder('Search...'); await searchBar.fill(text); } }