mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-06 21:21:13 -07:00
13 lines
372 B
TypeScript
13 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`);
|
|
}
|
|
}
|