- satyajeet
- Posts : 4
Join date : 2015-04-20
Unable to upload the file by senkeys
Wed Apr 22, 2015 8:50 pm
i have tried sendkeys function to upload the file but its not working for selenium 2.45.0 with Java
Snippet of code
FirefoxDriver dr = new FirefoxDriver();
dr.get("URL");
dr.findElement(By.id(".....")).sendKeys("Filepath/FileName");
Snippet of code
FirefoxDriver dr = new FirefoxDriver();
dr.get("URL");
dr.findElement(By.id(".....")).sendKeys("Filepath/FileName");
Re: Unable to upload the file by senkeys
Thu Apr 23, 2015 4:21 pm
Try with AutoIT tool,
you need to use following code,
$windowHandle = WinGetHandle("File Upload") WinActivate($windowHandle)
ControlSetText("File Upload", "", "[CLASS:Edit; INSTANCE:1]",
$CmdLine[1]) ControlClick("File Upload", "",
"[CLASS:Edit; INSTANCE:1]")
And then in your script call it with following lines
Process process = new ProcessBuilder("c:\\temp.exe", "c:\\image.jpg", "Open").start();
check following link for more details
http://automation123.blogspot.in/2015/04/selenium-webdriver-tips.html?utm_source=BP_recent
you need to use following code,
$windowHandle = WinGetHandle("File Upload") WinActivate($windowHandle)
ControlSetText("File Upload", "", "[CLASS:Edit; INSTANCE:1]",
$CmdLine[1]) ControlClick("File Upload", "",
"[CLASS:Edit; INSTANCE:1]")
And then in your script call it with following lines
Process process = new ProcessBuilder("c:\\temp.exe", "c:\\image.jpg", "Open").start();
check following link for more details
http://automation123.blogspot.in/2015/04/selenium-webdriver-tips.html?utm_source=BP_recent
Permissions in this forum:
You cannot reply to topics in this forum