SV
def get_cards_info(self):
log.debug("Get cards info")
cards = self.driver.find_elements(*self._locator.CARDS)
card_content = []
for card in cards:
card_content.append(card.find_element_by_xpath(".//span").get_attribute('textContent')
return card_content


