me here trying to find out how to achieve the next:
I am actually using Selenium to drive trough webpages but when I want to upload some images in any webpage the "Open"(Abrir because in spanish) file browser opens up and I want to know how to browse to the directory I want and select the file(s) that I want to upload --> For example:
I go to imgBB URL and I click the START UPLOADING button with Selenium but then I want to browse to an specific folder and then select some files I want, but without using Selenium.

Do someone knows what other libraries may I use to select the specific files that I want to upload?
Solution using pywinauto
This could be done with pywinauto
Disclaimer: I am not
pywinautoguru.Solution with Selenium
To upload files you need to find an
inputelement withtype=filethat is called when the "Start uploading" button clickedupload = driver.find_element(By.ID,"anywhere-upload-input")And then add a file you want to upload
upload.send_keys("C:\\Users\\USERNAME\\\Pictures\\IMAGE.png")After this, the next step window will be shown.
If you want to upload multiple files you have to combine all file paths into one string and separate them with
\n:upload.send_keys("C:\\Users\\USERNAME\\Pictures\\IMAGE.png \n C:\\Users\\USERNAME\\Pictures\\IMAGE2.png")Here is the full code: