Closed GoogleCodeExporter closed 9 years ago
Cannot find how to change report type from "Defect" to "Feature request". I
hope my question won't look offensive =)
Original comment by frolo...@gmail.com
on 9 Aug 2012 at 12:02
I implemented the setPreference command in the next release (1.0.6.2). It
should be available at the end of the week.
It will apply to Firefox only. Here is the way to use it to automatically
download a file :
Dim selenium As New SeleniumWrapper.WebDriver
selenium.setPreference("browser.download.folderList",2);
selenium.setPreference("browser.download.manager.showWhenStarting",false);
selenium.setPreference("browser.download.dir","c:\downloads"); 'Target folder
selenium.setPreference("browser.helperApps.neverAsk.saveToDisk","text/csv"); 'MIME types separated by a comma
selenium.start "firefox", "https://www.google.com/"
The setPreference command must be placed before the start command.
The target folder must exist for the preference "browser.download.dir".
For each file type, the MIME has to be defined in
"browser.helperApps.neverAsk.saveToDisk"
[http://www.webmaster-toolkit.com/mime-types.shtml]
Original comment by florentbr
on 20 Aug 2012 at 3:51
Could you provide me detailed information in a new ticket (steps to reproduce,
screen captures...) about the crash you have with WinXp/Chrome/Office 2003 ?
Thanks.
Original comment by florentbr
on 20 Aug 2012 at 3:58
Implemented in version 1.0.6.1
Original comment by florentbr
on 26 Aug 2012 at 8:39
Original issue reported on code.google.com by
frolo...@gmail.com
on 9 Aug 2012 at 11:59