We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a08ec8 commit 0a011d5Copy full SHA for 0a011d5
eform-client/cypress/e2e/SearchableLists.page.ts
@@ -1,11 +1,13 @@
1
-import { Navbar } from './Navbar.page';
+import { PageWithNavbarPage } from './PageWithNavbar.page';
2
3
-export class SearchableListsPage {
4
- private navbar = new Navbar();
+export class SearchableListsPage extends PageWithNavbarPage {
+ constructor() {
5
+ super();
6
+ }
7
8
// Navigation
9
public goToEntitySearchPage() {
- this.navbar.goToEntitySearch();
10
+ this.Navbar.goToEntitySearch();
11
}
12
13
// Element selectors
0 commit comments