How to upload files from local via window prompt using selenium webdriver?
I want to perform the following actions:
Have you tried using input() on proper file input control?
input()
WebElement fileInput = driver.findElement(By.id("some id")); fileInput.sendKeys("C:/path/to/file.extension");