I need to know the number of links that return in the extraction below:
for produtos in classeprodutos:
link = produtos.find_element(By. TAG_NAME, "a")
lista_link.append(print(link.get_attribute("href")))
CodePudding user response:
You have to call an iterable maeaning a list inside len() function to count the total number like:
print(len(classeprodutos))
#OR
lista_link = []
for produtos in classeprodutos:
link = produtos.find_element(By. TAG_NAME, "a")
lista_link.append(link.get_attribute("href"))
print(len(lista_link))