Andrew, could you share what you are using to drive the keyboard? I looked at the
KeyboardEvent Web API docs but I still don't think this will work for me. Or if it would, I don't really understand how to use it. In the app I'm testing we are using dropzone.js to upload files. Once a user clicks on the 'upload' area the windows file explorer opens up and then you can browse to the file. If I can figure out how to send keyboard events to this window then it would work. The problem with KeyboardEvent is that it still requires an element in the DOM to receive the dispatch event.
I have an input element but it is hidden an when I try to use setValue() it tells me the element cannot be manipulated.
<input type="file" multiple="multiple" class="dz-hidden-input" style="visibility: hidden; position: absolute; top: 0px; left: 0px; height: 0px; width: 0px;">
Here is a screenshot of what I need to do. If you can't post any code samples can you at least let me know what you are doing to "drive the keyboard"?
