Fixed the issue where we couldn't request TV shows from the discover page

This commit is contained in:
tidusjar 2021-03-22 15:11:43 +00:00
commit cb3916f773
4 changed files with 8 additions and 2 deletions

View file

@ -95,6 +95,10 @@ class MoviesTab extends MediaBaseTab {
get approveFabButton(): Cypress.Chainable<any> {
return cy.get('#approveFabButton');
}
getRowCheckbox(rowId: number): Cypress.Chainable<any> {
return cy.get('#adminMasterCheckbox' + rowId);
}
}
class RequestsPage extends BasePage {