Method: Selenium::WebDriver::FileReaper.tmp_files

Defined in:
lib/selenium/webdriver/common/file_reaper.rb

.tmp_filesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.


39
40
41
42
# File 'lib/selenium/webdriver/common/file_reaper.rb', line 39

def tmp_files
  @tmp_files ||= Hash.new { |hash, pid| hash[pid] = [] }
  @tmp_files[Process.pid]
end