Method: Selenium::WebDriver::FileReaper.tmp_files
- Defined in:
- lib/selenium/webdriver/common/file_reaper.rb
.tmp_files ⇒ Object
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.
34 35 36 37 |
# File 'lib/selenium/webdriver/common/file_reaper.rb', line 34 def tmp_files @tmp_files ||= Hash.new { |hash, pid| hash[pid] = [] } @tmp_files[Process.pid] end |