Module: Selenium::WebDriver::DriverExtensions::HasWebStorage Private

Defined in:
lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb

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

Instance Method Summary collapse

Instance Method Details

#local_storageObject

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.



11
12
13
# File 'lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb', line 11

def local_storage
  HTML5::LocalStorage.new @bridge
end

#session_storageObject

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.



15
16
17
# File 'lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb', line 15

def session_storage
  HTML5::SessionStorage.new @bridge
end