diff --git a/src/platform/test/functional/page_objects/dashboard_page.ts b/src/platform/test/functional/page_objects/dashboard_page.ts index fc5e821a9f3a1..9aac12461f7b6 100644 --- a/src/platform/test/functional/page_objects/dashboard_page.ts +++ b/src/platform/test/functional/page_objects/dashboard_page.ts @@ -199,7 +199,8 @@ export class DashboardPageObject extends FtrService { */ public async onDashboardLandingPage() { this.log.debug(`onDashboardLandingPage`); - return await this.listingTable.onListingPage('dashboard'); + const currentUrl = await this.browser.getCurrentUrl(); + return currentUrl.includes('dashboards#/list'); } public async expectExistsDashboardLandingPage() {