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

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.



28
29
30
# File 'rb/lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb', line 28

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.



32
33
34
# File 'rb/lib/selenium/webdriver/common/driver_extensions/has_web_storage.rb', line 32

def session_storage
  HTML5::SessionStorage.new @bridge
end