Open GoogleCodeExporter opened 9 years ago
Original comment by barancev
on 28 Aug 2013 at 9:37
Original comment by samu...@chromium.org
on 21 Feb 2015 at 12:18
Issue is reproducible with chrome: 41.0.2272.76 and chromedriver:2.14. But when
tried to select file manually, issue is not reproducible
please have below java code:
WebDriver driver=new ChromeDriver();
driver.get("evalidatetest.html");
driver.findElement(By.id("grade_file")).sendKeys("TestCsv.csv");
driver.findElement(By.tagName("form")).submit();
Original comment by ssudunag...@chromium.org
on 12 Mar 2015 at 4:49
Attachments:
I've run into this problem myself in my selenium tests. I believe that the
error is caused by the fact that chromedriver assigns the mime-type
'application/octet-stream' to every file that it uploads, so your application
will not be getting the mime-type that you expect it to.
Original comment by szh...@narrativescience.com
on 13 Apr 2015 at 4:23
I'm supporting the Selenium2Library for Robotframework and a user reported this
issue to me as well. They reported the same behavior on Chromium 41.0.2272.76
(webdriver 2.15) and google-chrome-stable 42.0.2311.135-1 (webdriver 2.15).
Original comment by zephr...@gmail.com
on 28 Apr 2015 at 10:19
same problem is happened on latest chromedriver 2.15
Original comment by liuyu...@gmail.com
on 25 May 2015 at 4:36
This issue happens due to devTools DOM.setFileInputFiles
Original comment by gmanikp...@chromium.org
on 26 May 2015 at 11:30
Is there any workaround for this issue?
Original comment by rwat...@netflix.com
on 29 May 2015 at 3:29
I also receive this problem when using ChromeDriver to upload a .doc or .docx.
Chrome cannot seem to detect the correct mime-type of the file so is using
application/octet-stream
Original comment by ily...@gmail.com
on 14 Jul 2015 at 12:28
Original issue reported on code.google.com by
faren...@gmail.com
on 28 Aug 2013 at 9:21Attachments: