mirror of
https://github.com/Ombi-app/Ombi.git
synced 2024-11-23 05:50:09 -08:00
12 lines
178 B
TypeScript
12 lines
178 B
TypeScript
|
|
class SearchBar {
|
|
|
|
constructor() { }
|
|
|
|
get searchInput(): Cypress.Chainable<any> {
|
|
return cy.get(`#nav-search`);
|
|
}
|
|
|
|
}
|
|
|
|
export const searchBar = new SearchBar(); |