Files
photoprism/frontend/tests/acceptance/page-model/library.js
Ömer Duran 7925ab205d Tests: Add acceptance tests for keyboard shortcuts
The following shortcuts are tested:
- Common page shortcuts: Search focus (Ctrl+F), Refresh (Ctrl+R), Upload dialog (Ctrl+U).
- Lightbox shortcuts: Info panel toggle (Ctrl+I), Mute/Unmute (Ctrl+M), Slideshow play/pause (Ctrl+S), Archive (Ctrl+A), Download (Ctrl+D), Edit (Ctrl+E), Fullscreen toggle (Ctrl+F), Like/Unlike (Ctrl+L).
- Expansion panel toggle (Shift+Ctrl+F) and focusing search fields on specific pages (People, Labels, Library Errors) (Ctrl+F).
2025-04-11 15:22:36 +02:00

17 lines
790 B
JavaScript

import { Selector, t } from "testcafe";
export default class Page {
constructor() {
this.openImportFolderSelect = Selector(".input-import-folder input", { timeout: 15000 });
this.import = Selector("button.action-import");
this.indexFolderSelect = Selector(".input-index-folder input", { timeout: 15000 });
this.index = Selector(".action-index");
this.importTab = Selector("#tab-library_import", { timeout: 15000 });
this.indexTab = Selector("#tab-library_index", { timeout: 15000 });
this.logsTab = Selector("#tab-library_logs", { timeout: 15000 });
this.moveCheckbox = Selector("label").withText("Move Files");
this.completeRescanCheckbox = Selector("label").withText("Complete Rescan");
this.searchInput = Selector(".input-search input");
}
}