def get_involved_links()

in pages/desktop/frontend/static_pages.py [0:0]


    def get_involved_links(self):
        # add all the links except 'wiki'
        self.wait.until(
            EC.visibility_of_element_located(self._get_involved_links_locator)
        )
        links = self.find_elements(*self._get_involved_links_locator)
        # add the 'wiki' link
        links.append(self.find_elements(*self._content_card_links_locator)[10])
        return links