I believe you have to monkey patch selenium-webdriver, as there does not appear to be a built in way to specify the directory that includes the temporary profiles.
Background
Seleium-webdriver (and therefore watir-webdriver) creates the temporary Firefox profile directory in \selenium-webdriver-2.26.0\lib\selenium\webdriver\firefox\profile.rb using the method:
def layout_on_disk
profile_dir = @model ? create_tmp_copy(@model) : Dir.mktmpdir("webdriver-profile")
FileReaper << profile_dir
install_extensions(profile_dir)
delete_lock_files(profile_dir)
delete_extensions_cache(profile_dir)
update_user_prefs_in(profile_dir)
profile_dir
end
The temporary folder is created by the:
Dir.mktmpdir("webdriver-profile")
Which is defined in the tmpdir library. For the Dir.mktmpdir method, the second optional parameter defines the parent folder (ie where to create the temporary profile). If no value is specified, as in this case, the temporary folder is created in Dir.tmpdir, which in your situation is the 'tmp' folder.
Solution
To change where the temporary folder is created, you can monkey patch the layout_on_disk method to specify your desired directory in the call to Dir.mktmpdir. It would look like:
require 'watir-webdriver'
module Selenium
module WebDriver
module Firefox
class Profile
def layout_on_disk
#In the below line, replace 'your/desired/path' with
# the location of where you want the temporary profiles
profile_dir = @model ?
create_tmp_copy(@model) :
Dir.mktmpdir("webdriver-profile", 'your/desired/path')
FileReaper << profile_dir
install_extensions(profile_dir)
delete_lock_files(profile_dir)
delete_extensions_cache(profile_dir)
update_user_prefs_in(profile_dir)
profile_dir
end
end
end
end
end
browser = Watir::Browser.new :ff
#=> The temporary directory will be created in 'your/desired/path'.