appium/ruby_lib

/session/:sessionId/appium/settings command

ZCNST opened this issue · 2 comments

ZCNST commented

This is a

  • Bug report
  • [X ] Question
  • Freature Request

What is the ruby commad which implements the following api?
POST /session/:sessionId/appium/settings

Referece
https://appium.io/docs/en/advanced-concepts/settings/

thank you in advance

Do you mean

t 'get settings' do
get_settings.wont_be_nil
end
t 'update settings' do
update_settings allowInvisibleElements: true
get_settings['allowInvisibleElements'].must_equal true
end
?