We run an ERP automation that logs into a secure portal, reads an Excel workbook of order IDs and category filters, and then performs two tightly coupled jobs: download the relevant PDF statements from the ERP and upload those same files into the designated repository inside the system. The workflow is built in Python/Selenium, runs inside a Windows VM with Chrome, and is meant to be completely hands-off once the Excel instructions and credentials are in place. What Needs Fixing Certain report categories aren’t downloading even though the Excel sheet lists valid order IDs; the bot either times out on new UI elements or saves nothing to the download folder. We need someone to diagnose the navigation and locator logic so every requested PDF is actually captured. The upload workflow is only partially complete. After the files are downloaded, the process should automatically switch to the upload module, attach the matching PDFs, and confirm each submission. We need to finish that flow, ensure it references the newly downloaded files, and provide clear logging so we can trust the handoff between the two steps.