diff --git a/openmetadata-ui/src/main/resources/ui/playwright/e2e/Flow/AdvanceSearchFilter/CustomPropertyAdvanceSeach.spec.ts b/openmetadata-ui/src/main/resources/ui/playwright/e2e/Flow/AdvanceSearchFilter/CustomPropertyAdvanceSeach.spec.ts index ebb8ae89d8d..e55f0e9708b 100644 --- a/openmetadata-ui/src/main/resources/ui/playwright/e2e/Flow/AdvanceSearchFilter/CustomPropertyAdvanceSeach.spec.ts +++ b/openmetadata-ui/src/main/resources/ui/playwright/e2e/Flow/AdvanceSearchFilter/CustomPropertyAdvanceSeach.spec.ts @@ -146,6 +146,14 @@ test('CustomProperty Dashboard Filter', async ({ page }) => { .fill(propertyName); await page.getByTitle(propertyName).click(); + await page + .locator('.rule--operator .ant-select-selection-search-input') + .click(); + await page.waitForSelector(`.ant-select-dropdown:visible`, { + state: 'visible', + }); + await page.click(`.ant-select-dropdown:visible [title="=="]`); + // type custom property value based, on which the filter should be made on dashboard await page .locator('.group--children .rule--widget .ant-input')