Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/73f01154922158215edd3f45ae722b1b414870a6/tests/cypress/integration/page-objects/shared/EpisodeRequestModal.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/tests/cypress/integration/page-objects/shared/EpisodeRequestModal.ts

14 lines
372 B

export class EpisodeRequestModal {
get allSeasonsButton(): Cypress.Chainable<any> {
return cy.get(`#episodeModalAllSeasons`);
}
get firstSeasonButton(): Cypress.Chainable<any> {
return cy.get(`#episodeModalFirstSeason`);
}
get latestSeasonButton(): Cypress.Chainable<any> {
return cy.get(`#episodeModalLatestSeason`);
}
}