Posts by Vitor Daniel • 31 points
3 posts
-
0
votes1
answer90
viewsA: Python How to click Divs using Selenium
An element can be clicked on Selenium through the function click(): elemento = driver.find_element_by_class_name('foo') elemento.click()
-
-1
votes1
answer149
viewsQ: Which file type should I use to store the python data
I am creating a program in Python that needs to store some settings and also need to save the data in a file of its own (Like Autocad that generates files in the format . DWG). So far I’ve used a…
-
1
votes1
answer167
viewsQ: How to make the window transparent background in Kivy
Hello, I am trying to make a program that creates a window without borders and with transparent background. The first part I got: Window.borderless = True But I haven’t been able to make the…