Selenium how to upload files to Microsoft Edge
问题 I am using the following code to upload files to a website to a 'file' type element. The code works fine in Firefox, Chrome and Safari. However when I run the code against Edge the file is NOT uploaded driver.setFileDetector(new LocalFileDetector()); selectFile.sendKeys(path); This error is reported: The command failed because the specified element is not pointer or keyboard interactable. If I try using Javascript like this: document.getElementById('manual_file_selection').sendKeys(path) I