From 24706dbb7c388f12ff90b18579c947f5cf01c507 Mon Sep 17 00:00:00 2001 From: Anan Zhuang Date: Wed, 27 Sep 2023 16:10:58 +0000 Subject: [PATCH] restore _discover_navigation Signed-off-by: Anan Zhuang --- test/functional/apps/context/_discover_navigation.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/functional/apps/context/_discover_navigation.js b/test/functional/apps/context/_discover_navigation.js index c83cf0d70368..5680b28921a7 100644 --- a/test/functional/apps/context/_discover_navigation.js +++ b/test/functional/apps/context/_discover_navigation.js @@ -80,8 +80,9 @@ export default function ({ getService, getPageObjects }) { }); it('should open the context view with the same columns', async () => { - const data = await dataGrid.getHeaderFields(); - expect(data.columns).to.eql(['Time (@timestamp)', ...TEST_COLUMN_NAMES]); + const data = await dataGrid.getDataGridTableData(); + + expect(data.columns).to.eql(['', 'Time (@timestamp)', ...TEST_COLUMN_NAMES]); }); it('should open the context view with the filters disabled', async () => {