1
0
mirror of https://github.com/Ombi-app/Ombi.git synced 2025-03-12 04:35:27 -07:00
Ombi/tests/cypress/integration/page-objects/shared/SearchBar.ts

12 lines
178 B
TypeScript

class SearchBar {
constructor() { }
get searchInput(): Cypress.Chainable<any> {
return cy.get(`#nav-search`);
}
}
export const searchBar = new SearchBar();