in pages/desktop/base.py [0:0]
def more_menu(self, item=None):
menu = self.find_element(*self._more_menu_locator)
dropdown = self.find_element(*self._more_dropdown_locator)
link = menu.find_elements(*self._more_dropdown_links_locator)
# Create an action chain clicking on the elements of the dropdown more menu
action = ActionChains(self.driver)
action.move_to_element(menu)
action.pause(2)
action.move_to_element(dropdown)
action.move_to_element(link[item])
action.click(link[item])
action.pause(2)
action.perform()