Is it possible to automate a file upload when the HTML code does not include an
< input type='file' >
instead, uses a link
<a ng-click="upload('files')"> File Upload </a>
Clicking this link opens a file selector for uploading files. However, since there is no INPUT type='file' element present, how can I locate it to use webdriver.send_keys('/Users/myname/testfile.txt')?
Looking for guidance on how to handle this file upload scenario using Selenium webdriver.
Your assistance in finding a solution would be greatly appreciated.