Method: Appium::Core::Base::DriverSettings#update

Defined in:
lib/appium_lib_core/common/base/driver_settings.rb

#update(settings) ⇒ 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.

Update Appium Settings for current test session

Examples:


@driver.settings.update({'allowInvisibleElements': true})

Parameters:

  • settings (Hash)

    Settings to update, keys are settings, values to value to set each setting to


45
46
47
# File 'lib/appium_lib_core/common/base/driver_settings.rb', line 45

def update(settings)
  @bridge.update_settings(settings)
end