I am trying to write a web scraper in python that uploads a file to a website (through a dashboard). To upload a file, I need to click on this box.
When I click on this box it opens a File Explorer window. I want to be able to type into the 'File Name:' box.
I assume it's possible with PyWinAuto but I have never used it before and have no idea how I'm supposed to go about it. The furthest I've got is connecting to the window
app = Application(backend="uia").connect(path="explorer.exe", title="Open")
