def test_that_user_can_filter_product_by_name_without_mouse(self, mozwebqa_logged_in):
        manage_products_pg = MozTrapManageProductsPage(mozwebqa_logged_in)

        product = self.create_product(mozwebqa_logged_in)

        manage_products_pg.filter_products_by_name_without_mouse(name='Another Product')

        Assert.false(manage_products_pg.is_element_present(product['locator']))

        manage_products_pg.remove_name_filter(name='Another Product')
        manage_products_pg.filter_products_by_name_without_mouse(name=product['name'])

        Assert.true(manage_products_pg.is_element_present(product['locator']))

        manage_products_pg.delete_product(name=product['name'])