Skip to content

Commit ca42554

Browse files
committed
added get_settings and update_settings methods
1 parent 7cd7431 commit ca42554

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

android_tests/lib/android/specs/driver.rb

+10
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,16 @@ def validate_path path
180180
end
181181
end
182182

183+
# settings
184+
t 'get settings' do
185+
get_settings.wont_be_nil
186+
end
187+
188+
t 'update settings' do
189+
update_settings cyberdelia: 'open'
190+
get_settings['cyberdelia'].must_equal 'open'
191+
end
192+
183193
# Skip: x # x is only used in Pry
184194
end
185195
end

ios_tests/lib/ios/specs/driver.rb

+11-1
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,16 @@ def is_sauce
203203
find_element(:class, 'UIAStaticText').class.must_equal Selenium::WebDriver::Element
204204
end
205205

206+
# settings
207+
t 'get settings' do
208+
get_settings.wont_be_nil
209+
end
210+
211+
t 'update settings' do
212+
update_settings cyberdelia: 'open'
213+
get_settings['cyberdelia'].must_equal 'open'
214+
end
215+
206216
# Skip: x # x is only used in Pry
207217
end
208-
end
218+
end

lib/appium_lib/device/device.rb

+19
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,13 @@ module Device
9292
# Android only; Ends the test coverage and writes the results to the given path on device.
9393
# @param path (String) Path on the device to write too.
9494
# @param intent (String) Intent to broadcast when ending coverage.
95+
96+
# @!method get_settings
97+
# Get appium Settings for current test session
98+
99+
# @!method update_settings
100+
# Update appium Settings for current test session
101+
# @param settings (hash) Settings to update, keys are settings, values to value to set each setting to
95102
class << self
96103
def extended(mod)
97104
extend_webdriver_with_forwardable
@@ -214,6 +221,18 @@ def end_coverage(path, intent)
214221
end
215222
end
216223

224+
add_endpoint_method(:get_settings, 'session/:session_id/appium/settings', :get) do
225+
def get_settings
226+
execute :get_settings, {}
227+
end
228+
end
229+
230+
add_endpoint_method(:update_settings, 'session/:session_id/appium/settings') do
231+
def update_settings(settings)
232+
execute :update_settings, {}, settings: settings
233+
end
234+
end
235+
217236
add_touch_actions
218237
extend_search_contexts
219238
end

0 commit comments

Comments
 (0)