Module: Selenium::WebDriver::DriverExtensions::HasWebStorage Private
- Defined in:
- rb/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)
- - (Object) local_storage private
- - (Object) session_storage private
Instance Method Details
- (Object) local_storage
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 'rb/lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb', line 11 def local_storage HTML5::LocalStorage.new @bridge end |
- (Object) session_storage
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 'rb/lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb', line 15 def session_storage HTML5::SessionStorage.new @bridge end |