Jamie Rees cc98fc6aca
feat(wizard): Added the ability to start with a different database (#5208)
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2025-01-03 16:19:53 +00:00

77 lines
1.9 KiB
TypeScript

import { BasePage } from "../base.page";
class LocalUserTab {
get username(): Cypress.Chainable<any> {
return cy.get('#adminUsername');
}
get password(): Cypress.Chainable<any> {
return cy.get('#adminPassword');
}
get next(): Cypress.Chainable<any> {
return cy.getByData('nextLocalUser');
}
}
class WelcomeTab {
get next(): Cypress.Chainable<any> {
return cy.getByData('nextWelcome');
}
}
class DatabaseTab {
get next(): Cypress.Chainable<any> {
return cy.getByData('nextDatabase');
}
}
class MediaServerTab {
get next(): Cypress.Chainable<any> {
return cy.getByData('nextMediaServer');
}
}
class OmbiConfigTab {
get next(): Cypress.Chainable<any> {
return cy.getByData('nextOmbiConfig');
}
}
class WizardPage extends BasePage {
databaseTab: DatabaseTab;
localUserTab: LocalUserTab;
welcomeTab: WelcomeTab;
mediaServerTab: MediaServerTab;
ombiConfigTab: OmbiConfigTab;
get finishButton(): Cypress.Chainable<any> {
return cy.get('#finishWizard');
}
get matStepsHeader(): Cypress.Chainable<any> {
return cy.get('mat-step-header');
}
constructor() {
super();
this.localUserTab = new LocalUserTab();
this.welcomeTab = new WelcomeTab();
this.mediaServerTab = new MediaServerTab();
this.ombiConfigTab = new OmbiConfigTab();
this.databaseTab = new DatabaseTab();
}
visit(options: Cypress.VisitOptions): Cypress.Chainable<Cypress.AUTWindow>;
visit(): Cypress.Chainable<Cypress.AUTWindow>;
visit(id: string): Cypress.Chainable<Cypress.AUTWindow>;
visit(id: string, options: Cypress.VisitOptions): Cypress.Chainable<Cypress.AUTWindow>;
visit(id?: any, options?: any) {
return cy.visit(`/`, options);
}
}
export const wizardPage = new WizardPage();