/usr/lib/python3.13/site-packages/ipatests/test_webui/ui_driver.py:2067: CA is installedself = <ipatests.test_webui.test_host.test_host object at 0x7f7ed3920c80> def test_search(self): self.init_app() self.navigate_to_entity(ENTITY) self.add_record(ENTITY, [self.data2, self.data3]) # positive search filter self.fill_search_filter(self.pkey2) actions = ActionChains(self.driver) actions.send_keys(Keys.ENTER).perform() self.wait(0.5) > self.assert_record(self.pkey2) test_webui/test_host.py:770: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <ipatests.test_webui.test_host.test_host object at 0x7f7ed3920c80> pkey = 'host-826dac14.ipa.test', parent = None, table_name = None negative = False def assert_record(self, pkey, parent=None, table_name=None, negative=False): """ Assert that record is in current search table """ has = self.has_record(pkey, parent, table_name) has |= self.has_record(pkey.lower(), parent, table_name) if negative: assert not has, "Record exists when it shouldn't: %s" % pkey else: > assert has, 'Record does not exist: %s' % pkey E AssertionError: Record does not exist: host-826dac14.ipa.test test_webui/ui_driver.py:2213: AssertionError