Posts by Matheux • 13 points
3 posts
-
0
votes2
answers563
viewsA: Selenium (list of elements of a class)
Thanks for the answer, but he returned all the elements as "None" lista_elementos = driver.find_elements_by_class_name('card-action') # ABRINDO TODAS AS DISCIPLINAS for i in lista_elementos: if i…
-
1
votes2
answers563
viewsQ: Selenium (list of elements of a class)
Greetings ! I want to open all the elements (not repeated) of a class, each in a new tab, how do I do it ? My attempt: lista_elementos = driver.find_elements_by_class_name('card-action') for i in…
-
-1
votes1
answer186
viewsQ: Automation in HTML [Python]
Good morning, good afternoon and good evening friends Devs. Just making it clear I’m a beginner -- I have two questions about automation within Python. 1- I want to do an automatic login on a given…