diff --git a/tests/sanity/tests/model/common-page.ts b/tests/sanity/tests/model/common-page.ts index 07da181d7e..f6938a05d3 100644 --- a/tests/sanity/tests/model/common-page.ts +++ b/tests/sanity/tests/model/common-page.ts @@ -5,6 +5,8 @@ export class CommonPage { if (name !== 'first') { const filterText = fullWordFilter ? name : name.split(' ')[0] await page.locator('div.selectPopup input').fill(filterText) + // TODO need to remove after fixed UBERF-4968 + await page.waitForTimeout(300) } await page.locator('div.selectPopup div.list-item:first-child').click() }