-2
Hello, is the following my problem: I am making a web scraping in the following URL > https://www.maze.com.br/produto/tenis-nike-air-jordan-ma2-ultramarine-branco/4749595. I came across a slight problem when selecting the size of the product (39.5; 40; 41; etc.):
tamanho = input('Tamanho do tênis? ')
After that I would make one find_elements_by_class_name
and see which class has the variable value tamanho
.
Turns out this didn’t work out...
For some reason I’m getting an empty array []
. After the error I thought of taking the amount that is in data-tooltip
and compare if the value matches the initial variable tamanho
, there’s the whole point! I don’t know how I can catch the value described in data-tooltip
to make the comparison of values. I have already researched on the subject and ended up finding nothing and so I am here asking this question.
If also you know any other method for me to be able to select the size of the tennis shoes.