File tree 3 files changed +40
-1
lines changed
android_tests/lib/android/specs
3 files changed +40
-1
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,16 @@ def validate_path path
180
180
end
181
181
end
182
182
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
+
183
193
# Skip: x # x is only used in Pry
184
194
end
185
195
end
Original file line number Diff line number Diff line change @@ -203,6 +203,16 @@ def is_sauce
203
203
find_element ( :class , 'UIAStaticText' ) . class . must_equal Selenium ::WebDriver ::Element
204
204
end
205
205
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
+
206
216
# Skip: x # x is only used in Pry
207
217
end
208
- end
218
+ end
Original file line number Diff line number Diff line change @@ -92,6 +92,13 @@ module Device
92
92
# Android only; Ends the test coverage and writes the results to the given path on device.
93
93
# @param path (String) Path on the device to write too.
94
94
# @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
95
102
class << self
96
103
def extended ( mod )
97
104
extend_webdriver_with_forwardable
@@ -214,6 +221,18 @@ def end_coverage(path, intent)
214
221
end
215
222
end
216
223
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
+
217
236
add_touch_actions
218
237
extend_search_contexts
219
238
end
You can’t perform that action at this time.
0 commit comments