in pages/desktop/frontend/collections.py [0:0]
def list(self):
self.wait.until(EC.visibility_of_element_located(self._collection_item_locator))
"""Represents the list of collections form My Collections page"""
items = self.find_elements(*self._collection_item_locator)
return [self.Collection(self, el) for el in items]