mirror of
https://github.com/Ombi-app/Ombi.git
synced 2024-11-23 05:50:09 -08:00
14 lines
372 B
TypeScript
14 lines
372 B
TypeScript
|
|
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`);
|
|
}
|
|
}
|