2022-04-14 14:42:48 +02:00
|
|
|
import { Selector, t } from "testcafe";
|
|
|
|
|
|
|
|
export default class Page {
|
|
|
|
constructor() {
|
2022-10-23 12:48:10 +02:00
|
|
|
this.changePasswordAction = Selector("button.action-change-password");
|
2022-04-14 14:42:48 +02:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
}
|