def get_my_full_team(self):
        xpath = "//div[@class='switchmenu']/button"
        poke_buttons = self.root.find_elements_by_xpath(xpath)
        pokemon = []
        for poke_button in poke_buttons:
            ActionChains(self.driver).move_to_element(poke_button).perform()
            tooltip = self.driver.find_element_by_xpath(self.TOOLTIP_PATH)
            pokemon.append(ShowdownPokemon.from_pop_up(poke_button, tooltip))

        return pokemon