photoprism/frontend/tests/acceptance/page-model/account.js
2022-10-23 12:48:10 +02:00

12 lines
476 B
JavaScript

import { Selector, t } from "testcafe";
export default class Page {
constructor() {
this.changePasswordAction = Selector("button.action-change-password");
this.currentPassword = Selector(".input-current-password input", { timeout: 15000 });
this.newPassword = Selector(".input-new-password input", { timeout: 15000 });
this.retypePassword = Selector(".input-retype-password input", { timeout: 15000 });
this.confirm = Selector(".action-confirm");
}
}