Module: Selenium::WebDriver::ProfileHelper Private
- Included in:
- Chrome::Profile, Firefox::Profile
- Defined in:
- lib/selenium/webdriver/common/profile_helper.rb
Overview
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.
Common methods for Chrome::Profile and Firefox::Profile Includers must implement #layout_on_disk
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
- .included(base) ⇒ Object private
Instance Method Summary collapse
- #as_json(opts = nil) ⇒ Object private
- #to_json(*args) ⇒ Object private
Class Method Details
.included(base) ⇒ 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.
13 14 15 |
# File 'lib/selenium/webdriver/common/profile_helper.rb', line 13 def self.included(base) base.extend ClassMethods end |
Instance Method Details
#as_json(opts = nil) ⇒ 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.
17 18 19 |
# File 'lib/selenium/webdriver/common/profile_helper.rb', line 17 def as_json(opts = nil) {'zip' => Zipper.zip(layout_on_disk)} end |