def category_list()

in regions/desktop/categories.py [0:0]


    def category_list(self):
        self.wait.until(EC.visibility_of_element_located(self._categories_locator))
        items = self.find_elements(*self._categories_locator)
        return [self.CategoryList(self, el) for el in items]