From 2b01065d0b2c2287ed9568cb23de5e459082ef62 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Thu, 16 Mar 2017 01:55:06 +0900 Subject: [PATCH] Release 9 3 4 (#509) * Release 9.3.4 * Update release notes * update changelog --- CHANGELOG.md | 13 + docs/android_docs.md | 486 +++++++++++++------------ docs/ios_docs.md | 602 +++++++++++++++++-------------- lib/appium_lib/common/version.rb | 4 +- release_notes.md | 6 + 5 files changed, 601 insertions(+), 510 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e82e1ec9..e25d68f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ Commit based release not is [release_notes.md](./release_notes.md) Release tags are https://github.com/appium/ruby_lib/releases . +## v9.3.4 +### 1. Enhancements +- [remove workaround](https://github.com/appium/ruby_lib/pull/474/commits/57cc95264e83e14862f729683b93c1f020a30ce5) to pass CI +- document uiautomator events logging command [#319](https://github.com/appium/ruby_lib/issues/319) +- use predicate for XCUITest to improve performance [#493](https://github.com/appium/ruby_lib/issues/493) + - `text/s`, `button/s`, `textfield/s`, `tags_exact`, `tags_include` + - new: `find_ele/s_by_predicate`, `find_ele/s_by_predicate_include` + +### 2. Bug fixes + +### 3. Deprecations + + ## v9.3.3 ### 1. Enhancements - add tags_include/tags_exact to be able to find elements of arbitrary classes such as XCUIElementTypeTextView [#488](https://github.com/appium/ruby_lib/issues/488) diff --git a/docs/android_docs.md b/docs/android_docs.md index 757bc5ae..2d01bc7d 100644 --- a/docs/android_docs.md +++ b/docs/android_docs.md @@ -1,4 +1,4 @@ -##### [load_settings](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L75) +##### [load_settings](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L75) > def self.load_settings(opts = {}) @@ -27,7 +27,7 @@ __Returns:__ -- -##### [load_appium_txt](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L111) +##### [load_appium_txt](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L111) > def self.load_settings(opts = {}) @@ -57,7 +57,7 @@ __Returns:__ -- -##### [expand_required_files](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L117) +##### [expand_required_files](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L117) > def self.expand_required_files(base_dir, file_paths) @@ -75,7 +75,7 @@ __Returns:__ -- -##### [symbolize_keys](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L149) +##### [symbolize_keys](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L149) > def self.symbolize_keys(hash) @@ -86,7 +86,7 @@ https://github.com/rails/docrails/blob/a3b1105ada3da64acfa3843b164b14b734456a50/ -- -##### [promote_singleton_appium_methods](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L170) +##### [promote_singleton_appium_methods](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L170) > def self.promote_singleton_appium_methods(modules) @@ -104,7 +104,7 @@ otherwise, the array of modules will be used as the promotion target. -- -##### [promote_appium_methods](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L223) +##### [promote_appium_methods](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L223) > def self.promote_appium_methods(class_array) @@ -134,7 +134,7 @@ __Parameters:__ -- -##### [init_caps_for_appium](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L258) +##### [init_caps_for_appium](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L258) > def self.init_caps_for_appium(opts_caps = {}) @@ -153,7 +153,7 @@ __Returns:__ -- -##### [global_webdriver_http_sleep](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L276) +##### [global_webdriver_http_sleep](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L276) > def global_webdriver_http_sleep @@ -161,7 +161,7 @@ The amount to sleep in seconds before every webdriver http call. -- -##### [global_webdriver_http_sleep=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L276) +##### [global_webdriver_http_sleep=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L276) > def global_webdriver_http_sleep=(value) @@ -169,7 +169,7 @@ The amount to sleep in seconds before every webdriver http call. -- -##### [caps](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L278) +##### [caps](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L278) > def caps @@ -177,7 +177,7 @@ Selenium webdriver capabilities -- -##### [caps=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L278) +##### [caps=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L278) > def caps=(value) @@ -185,7 +185,7 @@ Selenium webdriver capabilities -- -##### [custom_url](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L280) +##### [custom_url](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L280) > def custom_url @@ -193,7 +193,7 @@ Custom URL for the selenium server -- -##### [custom_url=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L280) +##### [custom_url=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L280) > def custom_url=(value) @@ -201,7 +201,7 @@ Custom URL for the selenium server -- -##### [export_session](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L282) +##### [export_session](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L282) > def export_session @@ -209,7 +209,7 @@ Export session id to textfile in /tmp for 3rd party tools -- -##### [export_session=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L282) +##### [export_session=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L282) > def export_session=(value) @@ -217,7 +217,7 @@ Export session id to textfile in /tmp for 3rd party tools -- -##### [default_wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L287) +##### [default_wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L287) > def default_wait @@ -231,7 +231,7 @@ __Returns:__ -- -##### [sauce_username](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L289) +##### [sauce_username](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L289) > def sauce_username @@ -239,7 +239,7 @@ Username for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_US -- -##### [sauce_username=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L289) +##### [sauce_username=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L289) > def sauce_username=(value) @@ -247,7 +247,7 @@ Username for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_US -- -##### [sauce_access_key](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L291) +##### [sauce_access_key](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L291) > def sauce_access_key @@ -255,7 +255,7 @@ Access Key for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_ -- -##### [sauce_access_key=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L291) +##### [sauce_access_key=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L291) > def sauce_access_key=(value) @@ -263,7 +263,7 @@ Access Key for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_ -- -##### [sauce_endpoint](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L293) +##### [sauce_endpoint](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L293) > def sauce_endpoint @@ -271,7 +271,7 @@ Override the Sauce Appium endpoint to allow e.g. TestObject tests -- -##### [sauce_endpoint=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L293) +##### [sauce_endpoint=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L293) > def sauce_endpoint=(value) @@ -279,7 +279,7 @@ Override the Sauce Appium endpoint to allow e.g. TestObject tests -- -##### [appium_port](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L295) +##### [appium_port](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L295) > def appium_port @@ -287,7 +287,7 @@ Appium's server port -- -##### [appium_port=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L295) +##### [appium_port=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L295) > def appium_port=(value) @@ -295,7 +295,7 @@ Appium's server port -- -##### [appium_device](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L297) +##### [appium_device](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L297) > def appium_device @@ -303,7 +303,7 @@ Device type to request from the appium server -- -##### [appium_device=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L297) +##### [appium_device=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L297) > def appium_device=(value) @@ -311,7 +311,7 @@ Device type to request from the appium server -- -##### [automation_name](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L300) +##### [automation_name](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L300) > def automation_name @@ -320,28 +320,15 @@ If automation_name is nil, it is not set both client side and server side. -- -##### [appium_server_version](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L302) +##### [appium_server_status](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L302) -> def appium_server_version - -Returns the server's version info - -```ruby -{ - "build" => { - "version" => "0.18.1", - "revision" => "d242ebcfd92046a974347ccc3a28f0e898595198" - } -} -``` +> def appium_server_status -__Returns:__ - -     [Hash] +Appium's server version -- -##### [appium_debug](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L304) +##### [appium_debug](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L304) > def appium_debug @@ -349,7 +336,7 @@ Boolean debug mode for the Appium Ruby bindings -- -##### [appium_debug=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L304) +##### [appium_debug=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L304) > def appium_debug=(value) @@ -357,7 +344,7 @@ Boolean debug mode for the Appium Ruby bindings -- -##### [listener](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L306) +##### [listener](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L306) > def listener @@ -365,7 +352,7 @@ instance of AbstractEventListener for logging support -- -##### [listener=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L306) +##### [listener=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L306) > def listener=(value) @@ -373,7 +360,7 @@ instance of AbstractEventListener for logging support -- -##### [driver](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L309) +##### [driver](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L309) > def driver @@ -385,7 +372,7 @@ __Returns:__ -- -##### [http_client](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L312) +##### [http_client](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L312) > def http_client @@ -397,7 +384,7 @@ __Returns:__ -- -##### [appium_wait_timeout](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L317) +##### [appium_wait_timeout](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L317) > def appium_wait_timeout @@ -411,7 +398,7 @@ __Returns:__ -- -##### [appium_wait_interval](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L322) +##### [appium_wait_interval](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L322) > def appium_wait_interval @@ -425,7 +412,7 @@ __Returns:__ -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L362) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L362) > def initialize(opts = {}) @@ -441,7 +428,7 @@ __Returns:__ -- -##### [driver_attributes](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L440) +##### [driver_attributes](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L440) > def driver_attributes @@ -449,7 +436,7 @@ Returns a hash of the driver attributes -- -##### [device_is_android?](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L465) +##### [device_is_android?](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L465) > def device_is_android? @@ -461,7 +448,7 @@ __Returns:__ -- -##### [automation_name_is_xcuitest?](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L471) +##### [automation_name_is_xcuitest?](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L471) > def automation_name_is_xcuitest? @@ -473,7 +460,7 @@ __Returns:__ -- -##### [check_server_version_xcuitest](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L478) +##### [check_server_version_xcuitest](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L478) > def check_server_version_xcuitest @@ -486,7 +473,28 @@ __Returns:__ -- -##### [appium_client_version](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L510) +##### [appium_server_version](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L497) + +> def appium_server_version + +Returns the server's version info + +```ruby +{ + "build" => { + "version" => "0.18.1", + "revision" => "d242ebcfd92046a974347ccc3a28f0e898595198" + } +} +``` + +__Returns:__ + +     [Hash] + +-- + +##### [appium_client_version](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L510) > def appium_client_version @@ -504,7 +512,7 @@ __Returns:__ -- -##### [absolute_app_path](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L522) +##### [absolute_app_path](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L522) > def self.absolute_app_path(opts) @@ -521,7 +529,7 @@ __Returns:__ -- -##### [server_url](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L555) +##### [server_url](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L555) > def server_url @@ -533,7 +541,7 @@ __Returns:__ -- -##### [restart](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L566) +##### [restart](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L566) > def restart @@ -545,7 +553,7 @@ __Returns:__ -- -##### [screenshot](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L577) +##### [screenshot](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L577) > def screenshot(png_save_path) @@ -563,7 +571,7 @@ __Returns:__ -- -##### [driver_quit](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L584) +##### [driver_quit](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L584) > def driver_quit @@ -575,7 +583,7 @@ __Returns:__ -- -##### [start_driver](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L594) +##### [start_driver](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L594) > def start_driver @@ -587,7 +595,7 @@ __Returns:__ -- -##### [no_wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L632) +##### [no_wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L632) > def no_wait @@ -595,7 +603,7 @@ Set implicit wait to zero. -- -##### [set_wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L646) +##### [set_wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L646) > def set_wait(timeout = nil) @@ -617,7 +625,7 @@ __Returns:__ -- -##### [exists](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L663) +##### [exists](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L663) > def exists(pre_check = 0, post_check = @default_wait) @@ -641,7 +649,7 @@ __Returns:__ -- -##### [execute_script](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L687) +##### [execute_script](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L687) > def execute_script(script, *args) @@ -659,7 +667,7 @@ __Returns:__ -- -##### [find_elements](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L695) +##### [find_elements](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L695) > def find_elements(*args) @@ -675,7 +683,7 @@ __Returns:__ -- -##### [find_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L703) +##### [find_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L703) > def find_element(*args) @@ -691,7 +699,7 @@ __Returns:__ -- -##### [set_location](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L716) +##### [set_location](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L716) > def set_location(opts = {}) @@ -707,7 +715,7 @@ __Returns:__ -- -##### [x](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L726) +##### [x](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L726) > def x @@ -720,7 +728,7 @@ __Returns:__ -- -##### [set_automation_name_if_nil](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L735) +##### [set_automation_name_if_nil](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L735) > def set_automation_name_if_nil @@ -729,7 +737,7 @@ Since @automation_name is set only client side before start_driver is called. -- -##### [logger=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/logger.rb#L13) +##### [logger=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/logger.rb#L13) > def logger=(value) @@ -741,7 +749,7 @@ __Parameters:__ -- -##### [logger](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/logger.rb#L17) +##### [logger](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/logger.rb#L17) > def logger @@ -749,7 +757,7 @@ __Parameters:__ -- -##### [app_strings](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L7) +##### [app_strings](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L7) > def app_strings @@ -760,7 +768,7 @@ app_strings #=> "TransitionsTitle"=>"Transitions", "WebTitle"=>"Web" -- -##### [background_app](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L13) +##### [background_app](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L13) > def background_app @@ -769,7 +777,7 @@ This is a blocking application -- -##### [current_activity](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L18) +##### [current_activity](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L24) > def current_activity @@ -777,7 +785,7 @@ This is a blocking application -- -##### [launch_app](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L20) +##### [launch_app](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L26) > def launch_app @@ -785,7 +793,7 @@ Start the simulator and application configured with desired capabilities -- -##### [reset](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L23) +##### [reset](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L29) > def reset @@ -793,7 +801,7 @@ Reset the device, relaunching the application. -- -##### [shake](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L26) +##### [shake](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L32) > def shake @@ -801,7 +809,7 @@ Cause the device to shake -- -##### [toggle_flight_mode](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L29) +##### [toggle_flight_mode](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L35) > def toggle_flight_mode @@ -809,7 +817,7 @@ Toggle flight mode on or off -- -##### [device_locked?](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L32) +##### [device_locked?](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L38) > def device_locked? @@ -817,7 +825,7 @@ Toggle flight mode on or off -- -##### [hide_keyboard](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L34) +##### [hide_keyboard](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L40) > def hide_keyboard @@ -830,7 +838,7 @@ Defaults to 'Done'. -- -##### [press_keycode](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L43) +##### [press_keycode](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L49) > def press_keycode @@ -845,7 +853,7 @@ __Parameters:__ -- -##### [long_press_keycode](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L49) +##### [long_press_keycode](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L55) > def long_press_keycode @@ -860,7 +868,7 @@ __Parameters:__ -- -##### [push_file](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L55) +##### [push_file](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L61) > def push_file @@ -874,7 +882,7 @@ __Parameters:__ -- -##### [pull_file](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L60) +##### [pull_file](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L66) > def pull_file @@ -891,7 +899,7 @@ __Parameters:__ -- -##### [pull_folder](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L70) +##### [pull_folder](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L76) > def pull_folder @@ -906,7 +914,7 @@ __Parameters:__ -- -##### [touch_id](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L78) +##### [touch_id](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L84) > def touch_id @@ -923,7 +931,7 @@ Defaults to true. -- -##### [end_coverage](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L87) +##### [end_coverage](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L93) > def end_coverage @@ -937,7 +945,7 @@ __Parameters:__ -- -##### [get_settings](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L92) +##### [get_settings](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L98) > def get_settings @@ -945,7 +953,7 @@ Get appium Settings for current test session -- -##### [update_settings](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L95) +##### [update_settings](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L101) > def update_settings @@ -957,7 +965,7 @@ __Parameters:__ -- -##### [start_activity](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L99) +##### [start_activity](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L105) > def start_activity @@ -971,7 +979,7 @@ start_activity app_package: 'io.appium.android.apis', -- -##### [get_network_connection](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L113) +##### [get_network_connection](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L119) > def get_network_connection @@ -980,7 +988,7 @@ See set_network_connection method for return value -- -##### [set_network_connection](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L117) +##### [set_network_connection](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L123) > def set_network_connection @@ -999,7 +1007,7 @@ __Parameters:__ -- -##### [set_immediate_value](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L130) +##### [set_immediate_value](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L136) > def set_immediate_value @@ -1013,7 +1021,7 @@ set_immediate_value element, 'hello' -- -##### [get_performance_data_types](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L139) +##### [get_performance_data_types](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L145) > def get_performance_data_types @@ -1027,7 +1035,7 @@ get_performance_data_types #=> ["cpuinfo", "batteryinfo", "networkinfo", "memory -- -##### [extend_search_contexts](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L388) +##### [extend_search_contexts](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L400) > def extend_search_contexts @@ -1035,7 +1043,7 @@ get_performance_data_types #=> ["cpuinfo", "batteryinfo", "networkinfo", "memory -- -##### [find_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L388) +##### [find_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L400) > def find_element @@ -1043,7 +1051,7 @@ get_performance_data_types #=> ["cpuinfo", "batteryinfo", "networkinfo", "memory -- -##### [find_elements](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L388) +##### [find_elements](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L400) > def find_elements @@ -1055,7 +1063,7 @@ find_element/s with their accessibility_id -- -##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L419) +##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L431) > def add_touch_actions @@ -1063,7 +1071,7 @@ find_element/s with their accessibility_id -- -##### [add_ime_actions](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L442) +##### [add_ime_actions](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L454) > def add_ime_actions @@ -1071,7 +1079,7 @@ find_element/s with their accessibility_id -- -##### [set_context](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L517) +##### [set_context](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L529) > def set_context @@ -1086,7 +1094,7 @@ __Parameters:__ -- -##### [current_context](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L525) +##### [current_context](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L537) > def current_context @@ -1098,7 +1106,7 @@ __Returns:__ -- -##### [available_contexts](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L528) +##### [available_contexts](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L540) > def available_contexts @@ -1110,7 +1118,7 @@ __Returns:__ -- -##### [within_context](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L538) +##### [within_context](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L550) > def within_context(context) @@ -1126,7 +1134,7 @@ __Parameters:__ -- -##### [switch_to_default_context](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L546) +##### [switch_to_default_context](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L558) > def switch_to_default_context @@ -1134,7 +1142,7 @@ Change to the default context. This is equivalent to `set_context nil`. -- -##### [pinch](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L28) +##### [pinch](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L28) > def pinch(percentage = 25, auto_perform = true) @@ -1153,7 +1161,7 @@ __Parameters:__ -- -##### [zoom](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L57) +##### [zoom](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L57) > def zoom(percentage = 200, auto_perform = true) @@ -1172,7 +1180,7 @@ __Parameters:__ -- -##### [pinch_for_xcuitest](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L79) +##### [pinch_for_xcuitest](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L79) > def pinch_for_xcuitest(rate) @@ -1180,7 +1188,7 @@ __Parameters:__ -- -##### [pinch_android](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L94) +##### [pinch_android](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L94) > def pinch_android(rate) @@ -1188,7 +1196,7 @@ __Parameters:__ -- -##### [pinch_ios](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L108) +##### [pinch_ios](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L108) > def pinch_ios(rate) @@ -1196,7 +1204,7 @@ __Parameters:__ -- -##### [zoom_for_xcuitest](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L122) +##### [zoom_for_xcuitest](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L122) > def zoom_for_xcuitest(rate) @@ -1204,7 +1212,7 @@ __Parameters:__ -- -##### [zoom_android](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L137) +##### [zoom_android](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L137) > def zoom_android(rate) @@ -1212,7 +1220,7 @@ __Parameters:__ -- -##### [zoom_ios](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L151) +##### [zoom_ios](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L151) > def zoom_ios(rate) @@ -1220,7 +1228,7 @@ __Parameters:__ -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L167) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L167) > def initialize @@ -1232,7 +1240,7 @@ __Returns:__ -- -##### [add](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L173) +##### [add](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L173) > def add(chain) @@ -1244,7 +1252,7 @@ __Parameters:__ -- -##### [perform](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L178) +##### [perform](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L178) > def perform @@ -1252,7 +1260,7 @@ Ask Appium to perform the actions -- -##### [ACTIONS](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L11) +##### [ACTIONS](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L11) > ACTIONS = [:move_to, :long_press, :double_tap, :two_finger_tap, :press, :release, :tap, :wait, :perform].freeze @@ -1260,7 +1268,7 @@ Ask Appium to perform the actions -- -##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L12) +##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L12) > COMPLEX_ACTIONS = [:swipe].freeze @@ -1268,7 +1276,7 @@ Ask Appium to perform the actions -- -##### [actions](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L26) +##### [actions](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L26) > def actions @@ -1276,7 +1284,7 @@ Returns the value of attribute actions -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L28) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L28) > def initialize @@ -1288,7 +1296,7 @@ __Returns:__ -- -##### [move_to](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L39) +##### [move_to](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L39) > def move_to(opts) @@ -1302,7 +1310,7 @@ __Parameters:__ -- -##### [long_press](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L53) +##### [long_press](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L53) > def long_press(opts) @@ -1323,7 +1331,7 @@ __Parameters:__ -- -##### [press](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L65) +##### [press](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L65) > def press(opts) @@ -1336,7 +1344,7 @@ __Parameters:__ -- -##### [release](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L76) +##### [release](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L76) > def release(opts = nil) @@ -1348,7 +1356,7 @@ __Parameters:__ -- -##### [tap](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L88) +##### [tap](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L88) > def tap(opts) @@ -1361,7 +1369,7 @@ __Parameters:__ -- -##### [double_tap](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L101) +##### [double_tap](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L101) > def double_tap(opts) @@ -1373,7 +1381,7 @@ __Parameters:__ -- -##### [two_finger_tap](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L112) +##### [two_finger_tap](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L112) > def two_finger_tap(opts) @@ -1385,7 +1393,7 @@ __Parameters:__ -- -##### [wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L120) +##### [wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L120) > def wait(milliseconds) @@ -1397,7 +1405,7 @@ __Parameters:__ -- -##### [swipe](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L143) +##### [swipe](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L143) > def swipe(opts, ele = nil) @@ -1418,7 +1426,7 @@ __Parameters:__ -- -##### [perform](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L168) +##### [perform](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L168) > def perform @@ -1426,7 +1434,7 @@ Ask the driver to perform all actions in this action chain. -- -##### [cancel](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L174) +##### [cancel](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L174) > def cancel @@ -1434,7 +1442,7 @@ Does nothing, currently. -- -##### [swipe_coordinates](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L180) +##### [swipe_coordinates](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L180) > def swipe_coordinates(end_x: nil, end_y: nil, offset_x: nil, offset_y: nil) @@ -1442,7 +1450,7 @@ Does nothing, currently. -- -##### [chain_method](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L198) +##### [chain_method](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L198) > def chain_method(method, args = nil) @@ -1450,7 +1458,7 @@ Does nothing, currently. -- -##### [args_with_ele_ref](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L204) +##### [args_with_ele_ref](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L204) > def args_with_ele_ref(args) @@ -1458,7 +1466,7 @@ Does nothing, currently. -- -##### [_generic_wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/wait.rb#L9) +##### [_generic_wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/wait.rb#L9) > def _generic_wait(opts = {}) @@ -1467,7 +1475,7 @@ https://github.com/SeleniumHQ/selenium/blob/cf501dda3f0ed12233de51ce8170c0e8090f -- -##### [_process_wait_opts](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/wait.rb#L48) +##### [_process_wait_opts](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/wait.rb#L48) > def _process_wait_opts(opts) @@ -1475,7 +1483,7 @@ process opts before calling _generic_wait -- -##### [wait_true](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/wait.rb#L69) +##### [wait_true](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/wait.rb#L69) > def wait_true(opts = {}, &block) @@ -1495,7 +1503,7 @@ __Parameters:__ -- -##### [wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/wait.rb#L87) +##### [wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/wait.rb#L87) > def wait(opts = {}, &block) @@ -1513,7 +1521,7 @@ __Parameters:__ -- -##### [ignore](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L24) +##### [ignore](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L24) > def ignore @@ -1521,7 +1529,7 @@ Return yield and ignore any exceptions. -- -##### [back](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L31) +##### [back](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L31) > def back @@ -1533,7 +1541,7 @@ __Returns:__ -- -##### [session_id](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L36) +##### [session_id](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L36) > def session_id @@ -1541,7 +1549,7 @@ For Sauce Labs reporting. Returns the current session id. -- -##### [xpath](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L44) +##### [xpath](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L44) > def xpath(xpath_str) @@ -1557,7 +1565,7 @@ __Returns:__ -- -##### [xpaths](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L52) +##### [xpaths](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L52) > def xpaths(xpath_str) @@ -1573,7 +1581,7 @@ __Returns:__ -- -##### [_print_source](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L56) +##### [_print_source](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L56) > def _print_source(source) @@ -1581,7 +1589,7 @@ __Returns:__ -- -##### [result](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L69) +##### [result](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L69) > def result @@ -1589,7 +1597,7 @@ Returns the value of attribute result -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L71) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L71) > def initialize @@ -1601,7 +1609,7 @@ __Returns:__ -- -##### [reset](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L75) +##### [reset](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L75) > def reset @@ -1609,7 +1617,7 @@ __Returns:__ -- -##### [start_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L80) +##### [start_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L80) > def start_element(name, attrs = []) @@ -1617,7 +1625,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html -- -##### [formatted_result](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L86) +##### [formatted_result](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L86) > def formatted_result @@ -1625,7 +1633,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html -- -##### [get_page_class](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L97) +##### [get_page_class](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L97) > def get_page_class @@ -1633,7 +1641,7 @@ Returns a string of class counts of visible elements. -- -##### [page_class](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L108) +##### [page_class](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L108) > def page_class @@ -1642,7 +1650,7 @@ Useful for appium_console. -- -##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L118) +##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L118) > def px_to_window_rel(opts = {}) @@ -1654,7 +1662,7 @@ px_to_window_rel x: 50, y: 150 -- -##### [xml_keys](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L137) +##### [xml_keys](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L137) > def xml_keys(target) @@ -1670,7 +1678,7 @@ __Returns:__ -- -##### [xml_values](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L145) +##### [xml_values](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L145) > def xml_values(target) @@ -1686,7 +1694,7 @@ __Returns:__ -- -##### [resolve_id](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L153) +##### [resolve_id](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L153) > def resolve_id(id) @@ -1702,7 +1710,7 @@ __Returns:__ -- -##### [filter](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L159) +##### [filter](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L159) > def filter @@ -1710,7 +1718,7 @@ Returns the value of attribute filter -- -##### [filter=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L162) +##### [filter=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L162) > def filter=(value) @@ -1718,7 +1726,7 @@ convert to string to support symbols -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L168) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L168) > def initialize @@ -1730,7 +1738,7 @@ __Returns:__ -- -##### [reset](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L173) +##### [reset](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L173) > def reset @@ -1738,7 +1746,7 @@ __Returns:__ -- -##### [result](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L179) +##### [result](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L179) > def result @@ -1746,7 +1754,7 @@ __Returns:__ -- -##### [start_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L195) +##### [start_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L195) > def start_element(name, attrs = []) @@ -1754,7 +1762,7 @@ __Returns:__ -- -##### [end_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L204) +##### [end_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L204) > def end_element(name) @@ -1762,7 +1770,7 @@ __Returns:__ -- -##### [characters](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L210) +##### [characters](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L210) > def characters(chars) @@ -1770,7 +1778,7 @@ __Returns:__ -- -##### [_no_such_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L217) +##### [_no_such_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L217) > def _no_such_element @@ -1778,7 +1786,7 @@ __Returns:__ -- -##### [COMMAND_NO_ARG](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/command.rb#L4) +##### [COMMAND_NO_ARG](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/command.rb#L4) > COMMAND_NO_ARG = { @@ -1786,7 +1794,7 @@ __Returns:__ -- -##### [COMMAND](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/command.rb#L24) +##### [COMMAND](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/command.rb#L24) > COMMAND = { @@ -1794,7 +1802,7 @@ __Returns:__ -- -##### [window_size](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/element/window.rb#L5) +##### [window_size](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/element/window.rb#L5) > def window_size @@ -1802,7 +1810,7 @@ Get the window's size -- -##### [FINDERS](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/search_context.rb#L5) +##### [FINDERS](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/search_context.rb#L5) > FINDERS = { @@ -1810,7 +1818,7 @@ rubocop:disable Style/MutableConstant -- -##### [result](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L6) android +##### [result](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L6) android > def result @@ -1818,7 +1826,7 @@ Returns the value of attribute result -- -##### [keys](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L6) android +##### [keys](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L6) android > def keys @@ -1826,7 +1834,7 @@ Returns the value of attribute keys -- -##### [instance](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L6) android +##### [instance](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L6) android > def instance @@ -1834,7 +1842,7 @@ Returns the value of attribute instance -- -##### [filter](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L6) android +##### [filter](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L6) android > def filter @@ -1842,7 +1850,7 @@ Returns the value of attribute filter -- -##### [filter=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L9) android +##### [filter=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L9) android > def filter=(value) @@ -1850,7 +1858,7 @@ convert to string to support symbols -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L15) android +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L15) android > def initialize @@ -1862,7 +1870,7 @@ __Returns:__ -- -##### [reset](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L21) android +##### [reset](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L21) android > def reset @@ -1870,7 +1878,7 @@ __Returns:__ -- -##### [start_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L28) android +##### [start_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L28) android > def start_element(name, attrs = []) @@ -1878,7 +1886,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html -- -##### [_fix_android_native_source](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L88) android +##### [_fix_android_native_source](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L88) android > def _fix_android_native_source(source) @@ -1888,7 +1896,7 @@ https://code.google.com/p/android/issues/detail?id=74143 -- -##### [source](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L116) android +##### [source](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L116) android > def source @@ -1900,7 +1908,7 @@ __Returns:__ -- -##### [get_android_inspect](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L126) android +##### [get_android_inspect](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L126) android > def get_android_inspect(class_name = false) @@ -1919,7 +1927,7 @@ __Returns:__ -- -##### [page](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L152) android +##### [page](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L152) android > def page(opts = {}) @@ -1938,7 +1946,7 @@ __Returns:__ -- -##### [current_app](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L164) android +##### [current_app](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L164) android > def current_app @@ -1948,7 +1956,7 @@ example line: -- -##### [id](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L188) android +##### [id](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L188) android > def id(id) @@ -1964,7 +1972,7 @@ __Returns:__ -- -##### [ids](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L196) android +##### [ids](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L196) android > def ids(id) @@ -1980,7 +1988,7 @@ __Returns:__ -- -##### [ele_index](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L205) android +##### [ele_index](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L205) android > def ele_index(class_name, index) @@ -1998,7 +2006,7 @@ __Returns:__ -- -##### [first_ele](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L223) android +##### [first_ele](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L223) android > def first_ele(class_name) @@ -2014,7 +2022,7 @@ __Returns:__ -- -##### [last_ele](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L230) android +##### [last_ele](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L230) android > def last_ele(class_name) @@ -2030,7 +2038,7 @@ __Returns:__ -- -##### [tag](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L238) android +##### [tag](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L238) android > def tag(class_name) @@ -2046,7 +2054,7 @@ __Returns:__ -- -##### [tags](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L246) android +##### [tags](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L246) android > def tags(class_name) @@ -2062,7 +2070,7 @@ __Returns:__ -- -##### [string_visible_contains](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L288) android +##### [string_visible_contains](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L288) android > def string_visible_contains(class_name, value) @@ -2082,7 +2090,7 @@ __Returns:__ -- -##### [complex_find_contains](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L308) android +##### [complex_find_contains](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L308) android > def complex_find_contains(element, value) @@ -2100,7 +2108,7 @@ __Returns:__ -- -##### [complex_finds_contains](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L316) android +##### [complex_finds_contains](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L316) android > def complex_finds_contains(element, value) @@ -2118,7 +2126,7 @@ __Returns:__ -- -##### [complex_find_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L345) android +##### [complex_find_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L345) android > def complex_find_exact(class_name, value) @@ -2136,7 +2144,7 @@ __Returns:__ -- -##### [complex_finds_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L353) android +##### [complex_finds_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L353) android > def complex_finds_exact(class_name, value) @@ -2154,7 +2162,7 @@ __Returns:__ -- -##### [get_source](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/helper.rb#L361) android +##### [get_source](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/helper.rb#L361) android > def get_source @@ -2168,7 +2176,7 @@ __Returns:__ -- -##### [_nodeset_to_uiselector](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/client_xpath.rb#L5) android +##### [_nodeset_to_uiselector](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/client_xpath.rb#L5) android > def _nodeset_to_uiselector(opts = {}) @@ -2176,7 +2184,7 @@ __Returns:__ -- -##### [_client_xpath](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/client_xpath.rb#L20) android +##### [_client_xpath](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/client_xpath.rb#L20) android > def _client_xpath(opts = {}) @@ -2184,7 +2192,7 @@ __Returns:__ -- -##### [client_xpath](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/client_xpath.rb#L36) android +##### [client_xpath](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/client_xpath.rb#L36) android > def client_xpath(xpath) @@ -2192,7 +2200,7 @@ __Returns:__ -- -##### [client_xpaths](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/client_xpath.rb#L40) android +##### [client_xpaths](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/client_xpath.rb#L40) android > def client_xpaths(xpath) @@ -2200,7 +2208,7 @@ __Returns:__ -- -##### [TextView](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/text.rb#L4) android +##### [TextView](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/text.rb#L4) android > TextView = 'android.widget.TextView'.freeze @@ -2208,7 +2216,7 @@ __Returns:__ -- -##### [text](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/text.rb#L10) android +##### [text](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/text.rb#L10) android > def text(value) @@ -2225,7 +2233,7 @@ __Returns:__ -- -##### [texts](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/text.rb#L19) android +##### [texts](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/text.rb#L19) android > def texts(value = false) @@ -2242,7 +2250,7 @@ __Returns:__ -- -##### [first_text](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/text.rb#L26) android +##### [first_text](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/text.rb#L26) android > def first_text @@ -2254,7 +2262,7 @@ __Returns:__ -- -##### [last_text](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/text.rb#L32) android +##### [last_text](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/text.rb#L32) android > def last_text @@ -2266,7 +2274,7 @@ __Returns:__ -- -##### [text_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/text.rb#L39) android +##### [text_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/text.rb#L39) android > def text_exact(value) @@ -2282,7 +2290,7 @@ __Returns:__ -- -##### [texts_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/text.rb#L46) android +##### [texts_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/text.rb#L46) android > def texts_exact(value) @@ -2298,7 +2306,7 @@ __Returns:__ -- -##### [alert_click](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/alert.rb#L6) android +##### [alert_click](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/alert.rb#L6) android > def alert_click(value) @@ -2314,7 +2322,7 @@ __Returns:__ -- -##### [alert_accept](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/alert.rb#L13) android +##### [alert_accept](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/alert.rb#L13) android > def alert_accept @@ -2327,7 +2335,7 @@ __Returns:__ -- -##### [alert_accept_text](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/alert.rb#L20) android +##### [alert_accept_text](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/alert.rb#L20) android > def alert_accept_text @@ -2340,7 +2348,7 @@ __Returns:__ -- -##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/alert.rb#L27) android +##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/alert.rb#L27) android > def alert_dismiss @@ -2353,7 +2361,7 @@ __Returns:__ -- -##### [alert_dismiss_text](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/alert.rb#L34) android +##### [alert_dismiss_text](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/alert.rb#L34) android > def alert_dismiss_text @@ -2366,7 +2374,7 @@ __Returns:__ -- -##### [Button](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/button.rb#L4) android +##### [Button](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/button.rb#L4) android > Button = 'android.widget.Button'.freeze @@ -2374,7 +2382,7 @@ __Returns:__ -- -##### [ImageButton](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/button.rb#L5) android +##### [ImageButton](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/button.rb#L5) android > ImageButton = 'android.widget.ImageButton'.freeze @@ -2382,7 +2390,7 @@ __Returns:__ -- -##### [button](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/button.rb#L43) android +##### [button](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/button.rb#L43) android > def button(value) @@ -2399,7 +2407,7 @@ __Returns:__ -- -##### [buttons](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/button.rb#L60) android +##### [buttons](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/button.rb#L60) android > def buttons(value = false) @@ -2416,7 +2424,7 @@ __Returns:__ -- -##### [first_button](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/button.rb#L67) android +##### [first_button](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/button.rb#L67) android > def first_button @@ -2428,7 +2436,7 @@ __Returns:__ -- -##### [last_button](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/button.rb#L73) android +##### [last_button](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/button.rb#L73) android > def last_button @@ -2440,7 +2448,7 @@ __Returns:__ -- -##### [button_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/button.rb#L89) android +##### [button_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/button.rb#L89) android > def button_exact(value) @@ -2456,7 +2464,7 @@ __Returns:__ -- -##### [buttons_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/button.rb#L96) android +##### [buttons_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/button.rb#L96) android > def buttons_exact(value) @@ -2472,7 +2480,7 @@ __Returns:__ -- -##### [uiautomator_find](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/mobile_methods.rb#L10) android +##### [uiautomator_find](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/mobile_methods.rb#L10) android > def uiautomator_find @@ -2484,7 +2492,7 @@ find_element/s can be used with a [UISelector](http://developer.android.com/tool -- -##### [find](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/generic.rb#L6) android +##### [find](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/generic.rb#L6) android > def find(value) @@ -2500,7 +2508,7 @@ __Returns:__ -- -##### [finds](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/generic.rb#L13) android +##### [finds](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/generic.rb#L13) android > def finds(value) @@ -2516,7 +2524,7 @@ __Returns:__ -- -##### [find_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/generic.rb#L20) android +##### [find_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/generic.rb#L20) android > def find_exact(value) @@ -2532,7 +2540,7 @@ __Returns:__ -- -##### [finds_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/generic.rb#L27) android +##### [finds_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/generic.rb#L27) android > def finds_exact(value) @@ -2548,7 +2556,7 @@ __Returns:__ -- -##### [scroll_to](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/generic.rb#L39) android +##### [scroll_to](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/generic.rb#L39) android > def scroll_to(text) @@ -2564,7 +2572,7 @@ __Returns:__ -- -##### [scroll_to_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/generic.rb#L51) android +##### [scroll_to_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/generic.rb#L51) android > def scroll_to_exact(text) @@ -2580,7 +2588,7 @@ __Returns:__ -- -##### [EditText](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/textfield.rb#L3) android +##### [EditText](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/textfield.rb#L3) android > EditText = 'android.widget.EditText'.freeze @@ -2588,7 +2596,7 @@ __Returns:__ -- -##### [textfield](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/textfield.rb#L9) android +##### [textfield](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/textfield.rb#L9) android > def textfield(value) @@ -2605,7 +2613,7 @@ __Returns:__ -- -##### [textfields](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/textfield.rb#L18) android +##### [textfields](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/textfield.rb#L18) android > def textfields(value = false) @@ -2622,7 +2630,7 @@ __Returns:__ -- -##### [first_textfield](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/textfield.rb#L25) android +##### [first_textfield](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/textfield.rb#L25) android > def first_textfield @@ -2634,7 +2642,7 @@ __Returns:__ -- -##### [last_textfield](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/textfield.rb#L31) android +##### [last_textfield](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/textfield.rb#L31) android > def last_textfield @@ -2646,7 +2654,7 @@ __Returns:__ -- -##### [textfield_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/textfield.rb#L38) android +##### [textfield_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/textfield.rb#L38) android > def textfield_exact(value) @@ -2662,7 +2670,7 @@ __Returns:__ -- -##### [textfields_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/android/element/textfield.rb#L45) android +##### [textfields_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/android/element/textfield.rb#L45) android > def textfields_exact(value) @@ -2678,7 +2686,7 @@ __Returns:__ -- -##### [value](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L12) +##### [value](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L12) > def value @@ -2688,7 +2696,7 @@ Fixes NoMethodError: undefined method `value' for Selenium::WebDriver::Element -- -##### [name](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L19) +##### [name](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L19) > def name @@ -2698,7 +2706,7 @@ Fixes NoMethodError: undefined method `name' for Selenium::WebDriver::Element -- -##### [location_rel](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L31) +##### [location_rel](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L31) > def location_rel @@ -2716,7 +2724,7 @@ __Returns:__ -- -##### [DEFAULT_HEADERS](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L152) +##### [DEFAULT_HEADERS](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L152) > DEFAULT_HEADERS = { 'Accept' => CONTENT_TYPE, 'User-Agent' => "appium/ruby_lib/#{::Appium::VERSION}" }.freeze @@ -2724,7 +2732,7 @@ __Returns:__ -- -##### [patch_remote_driver_commands](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L155) +##### [patch_remote_driver_commands](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L155) > def patch_remote_driver_commands diff --git a/docs/ios_docs.md b/docs/ios_docs.md index 9c5d6ef9..ed794ce9 100644 --- a/docs/ios_docs.md +++ b/docs/ios_docs.md @@ -1,4 +1,4 @@ -##### [load_settings](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L75) +##### [load_settings](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L75) > def self.load_settings(opts = {}) @@ -27,7 +27,7 @@ __Returns:__ -- -##### [load_appium_txt](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L111) +##### [load_appium_txt](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L111) > def self.load_settings(opts = {}) @@ -57,7 +57,7 @@ __Returns:__ -- -##### [expand_required_files](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L117) +##### [expand_required_files](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L117) > def self.expand_required_files(base_dir, file_paths) @@ -75,7 +75,7 @@ __Returns:__ -- -##### [symbolize_keys](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L149) +##### [symbolize_keys](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L149) > def self.symbolize_keys(hash) @@ -86,7 +86,7 @@ https://github.com/rails/docrails/blob/a3b1105ada3da64acfa3843b164b14b734456a50/ -- -##### [promote_singleton_appium_methods](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L170) +##### [promote_singleton_appium_methods](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L170) > def self.promote_singleton_appium_methods(modules) @@ -104,7 +104,7 @@ otherwise, the array of modules will be used as the promotion target. -- -##### [promote_appium_methods](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L223) +##### [promote_appium_methods](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L223) > def self.promote_appium_methods(class_array) @@ -134,7 +134,7 @@ __Parameters:__ -- -##### [init_caps_for_appium](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L258) +##### [init_caps_for_appium](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L258) > def self.init_caps_for_appium(opts_caps = {}) @@ -153,7 +153,7 @@ __Returns:__ -- -##### [global_webdriver_http_sleep](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L276) +##### [global_webdriver_http_sleep](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L276) > def global_webdriver_http_sleep @@ -161,7 +161,7 @@ The amount to sleep in seconds before every webdriver http call. -- -##### [global_webdriver_http_sleep=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L276) +##### [global_webdriver_http_sleep=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L276) > def global_webdriver_http_sleep=(value) @@ -169,7 +169,7 @@ The amount to sleep in seconds before every webdriver http call. -- -##### [caps](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L278) +##### [caps](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L278) > def caps @@ -177,7 +177,7 @@ Selenium webdriver capabilities -- -##### [caps=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L278) +##### [caps=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L278) > def caps=(value) @@ -185,7 +185,7 @@ Selenium webdriver capabilities -- -##### [custom_url](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L280) +##### [custom_url](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L280) > def custom_url @@ -193,7 +193,7 @@ Custom URL for the selenium server -- -##### [custom_url=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L280) +##### [custom_url=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L280) > def custom_url=(value) @@ -201,7 +201,7 @@ Custom URL for the selenium server -- -##### [export_session](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L282) +##### [export_session](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L282) > def export_session @@ -209,7 +209,7 @@ Export session id to textfile in /tmp for 3rd party tools -- -##### [export_session=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L282) +##### [export_session=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L282) > def export_session=(value) @@ -217,7 +217,7 @@ Export session id to textfile in /tmp for 3rd party tools -- -##### [default_wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L287) +##### [default_wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L287) > def default_wait @@ -231,7 +231,7 @@ __Returns:__ -- -##### [sauce_username](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L289) +##### [sauce_username](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L289) > def sauce_username @@ -239,7 +239,7 @@ Username for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_US -- -##### [sauce_username=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L289) +##### [sauce_username=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L289) > def sauce_username=(value) @@ -247,7 +247,7 @@ Username for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_US -- -##### [sauce_access_key](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L291) +##### [sauce_access_key](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L291) > def sauce_access_key @@ -255,7 +255,7 @@ Access Key for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_ -- -##### [sauce_access_key=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L291) +##### [sauce_access_key=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L291) > def sauce_access_key=(value) @@ -263,7 +263,7 @@ Access Key for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_ -- -##### [sauce_endpoint](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L293) +##### [sauce_endpoint](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L293) > def sauce_endpoint @@ -271,7 +271,7 @@ Override the Sauce Appium endpoint to allow e.g. TestObject tests -- -##### [sauce_endpoint=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L293) +##### [sauce_endpoint=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L293) > def sauce_endpoint=(value) @@ -279,7 +279,7 @@ Override the Sauce Appium endpoint to allow e.g. TestObject tests -- -##### [appium_port](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L295) +##### [appium_port](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L295) > def appium_port @@ -287,7 +287,7 @@ Appium's server port -- -##### [appium_port=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L295) +##### [appium_port=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L295) > def appium_port=(value) @@ -295,7 +295,7 @@ Appium's server port -- -##### [appium_device](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L297) +##### [appium_device](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L297) > def appium_device @@ -303,7 +303,7 @@ Device type to request from the appium server -- -##### [appium_device=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L297) +##### [appium_device=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L297) > def appium_device=(value) @@ -311,7 +311,7 @@ Device type to request from the appium server -- -##### [automation_name](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L300) +##### [automation_name](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L300) > def automation_name @@ -320,28 +320,15 @@ If automation_name is nil, it is not set both client side and server side. -- -##### [appium_server_version](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L302) +##### [appium_server_status](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L302) -> def appium_server_version - -Returns the server's version info - -```ruby -{ - "build" => { - "version" => "0.18.1", - "revision" => "d242ebcfd92046a974347ccc3a28f0e898595198" - } -} -``` - -__Returns:__ +> def appium_server_status -     [Hash] +Appium's server version -- -##### [appium_debug](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L304) +##### [appium_debug](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L304) > def appium_debug @@ -349,7 +336,7 @@ Boolean debug mode for the Appium Ruby bindings -- -##### [appium_debug=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L304) +##### [appium_debug=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L304) > def appium_debug=(value) @@ -357,7 +344,7 @@ Boolean debug mode for the Appium Ruby bindings -- -##### [listener](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L306) +##### [listener](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L306) > def listener @@ -365,7 +352,7 @@ instance of AbstractEventListener for logging support -- -##### [listener=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L306) +##### [listener=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L306) > def listener=(value) @@ -373,7 +360,7 @@ instance of AbstractEventListener for logging support -- -##### [driver](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L309) +##### [driver](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L309) > def driver @@ -385,7 +372,7 @@ __Returns:__ -- -##### [http_client](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L312) +##### [http_client](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L312) > def http_client @@ -397,7 +384,7 @@ __Returns:__ -- -##### [appium_wait_timeout](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L317) +##### [appium_wait_timeout](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L317) > def appium_wait_timeout @@ -411,7 +398,7 @@ __Returns:__ -- -##### [appium_wait_interval](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L322) +##### [appium_wait_interval](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L322) > def appium_wait_interval @@ -425,7 +412,7 @@ __Returns:__ -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L362) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L362) > def initialize(opts = {}) @@ -441,7 +428,7 @@ __Returns:__ -- -##### [driver_attributes](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L440) +##### [driver_attributes](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L440) > def driver_attributes @@ -449,7 +436,7 @@ Returns a hash of the driver attributes -- -##### [device_is_android?](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L465) +##### [device_is_android?](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L465) > def device_is_android? @@ -461,7 +448,7 @@ __Returns:__ -- -##### [automation_name_is_xcuitest?](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L471) +##### [automation_name_is_xcuitest?](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L471) > def automation_name_is_xcuitest? @@ -473,7 +460,7 @@ __Returns:__ -- -##### [check_server_version_xcuitest](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L478) +##### [check_server_version_xcuitest](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L478) > def check_server_version_xcuitest @@ -486,7 +473,28 @@ __Returns:__ -- -##### [appium_client_version](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L510) +##### [appium_server_version](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L497) + +> def appium_server_version + +Returns the server's version info + +```ruby +{ + "build" => { + "version" => "0.18.1", + "revision" => "d242ebcfd92046a974347ccc3a28f0e898595198" + } +} +``` + +__Returns:__ + +     [Hash] + +-- + +##### [appium_client_version](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L510) > def appium_client_version @@ -504,7 +512,7 @@ __Returns:__ -- -##### [absolute_app_path](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L522) +##### [absolute_app_path](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L522) > def self.absolute_app_path(opts) @@ -521,7 +529,7 @@ __Returns:__ -- -##### [server_url](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L555) +##### [server_url](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L555) > def server_url @@ -533,7 +541,7 @@ __Returns:__ -- -##### [restart](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L566) +##### [restart](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L566) > def restart @@ -545,7 +553,7 @@ __Returns:__ -- -##### [screenshot](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L577) +##### [screenshot](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L577) > def screenshot(png_save_path) @@ -563,7 +571,7 @@ __Returns:__ -- -##### [driver_quit](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L584) +##### [driver_quit](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L584) > def driver_quit @@ -575,7 +583,7 @@ __Returns:__ -- -##### [start_driver](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L594) +##### [start_driver](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L594) > def start_driver @@ -587,7 +595,7 @@ __Returns:__ -- -##### [no_wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L632) +##### [no_wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L632) > def no_wait @@ -595,7 +603,7 @@ Set implicit wait to zero. -- -##### [set_wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L646) +##### [set_wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L646) > def set_wait(timeout = nil) @@ -617,7 +625,7 @@ __Returns:__ -- -##### [exists](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L663) +##### [exists](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L663) > def exists(pre_check = 0, post_check = @default_wait) @@ -641,7 +649,7 @@ __Returns:__ -- -##### [execute_script](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L687) +##### [execute_script](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L687) > def execute_script(script, *args) @@ -659,7 +667,7 @@ __Returns:__ -- -##### [find_elements](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L695) +##### [find_elements](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L695) > def find_elements(*args) @@ -675,7 +683,7 @@ __Returns:__ -- -##### [find_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L703) +##### [find_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L703) > def find_element(*args) @@ -691,7 +699,7 @@ __Returns:__ -- -##### [set_location](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L716) +##### [set_location](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L716) > def set_location(opts = {}) @@ -707,7 +715,7 @@ __Returns:__ -- -##### [x](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L726) +##### [x](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L726) > def x @@ -720,7 +728,7 @@ __Returns:__ -- -##### [set_automation_name_if_nil](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/driver.rb#L735) +##### [set_automation_name_if_nil](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/driver.rb#L735) > def set_automation_name_if_nil @@ -729,7 +737,7 @@ Since @automation_name is set only client side before start_driver is called. -- -##### [logger=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/logger.rb#L13) +##### [logger=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/logger.rb#L13) > def logger=(value) @@ -741,7 +749,7 @@ __Parameters:__ -- -##### [logger](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/logger.rb#L17) +##### [logger](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/logger.rb#L17) > def logger @@ -749,7 +757,7 @@ __Parameters:__ -- -##### [app_strings](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L7) +##### [app_strings](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L7) > def app_strings @@ -760,7 +768,7 @@ app_strings #=> "TransitionsTitle"=>"Transitions", "WebTitle"=>"Web" -- -##### [background_app](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L13) +##### [background_app](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L13) > def background_app @@ -769,7 +777,7 @@ This is a blocking application -- -##### [current_activity](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L18) +##### [current_activity](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L24) > def current_activity @@ -777,7 +785,7 @@ This is a blocking application -- -##### [launch_app](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L20) +##### [launch_app](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L26) > def launch_app @@ -785,7 +793,7 @@ Start the simulator and application configured with desired capabilities -- -##### [reset](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L23) +##### [reset](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L29) > def reset @@ -793,7 +801,7 @@ Reset the device, relaunching the application. -- -##### [shake](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L26) +##### [shake](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L32) > def shake @@ -801,7 +809,7 @@ Cause the device to shake -- -##### [toggle_flight_mode](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L29) +##### [toggle_flight_mode](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L35) > def toggle_flight_mode @@ -809,7 +817,7 @@ Toggle flight mode on or off -- -##### [device_locked?](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L32) +##### [device_locked?](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L38) > def device_locked? @@ -817,7 +825,7 @@ Toggle flight mode on or off -- -##### [hide_keyboard](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L34) +##### [hide_keyboard](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L40) > def hide_keyboard @@ -830,7 +838,7 @@ Defaults to 'Done'. -- -##### [press_keycode](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L43) +##### [press_keycode](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L49) > def press_keycode @@ -845,7 +853,7 @@ __Parameters:__ -- -##### [long_press_keycode](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L49) +##### [long_press_keycode](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L55) > def long_press_keycode @@ -860,7 +868,7 @@ __Parameters:__ -- -##### [push_file](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L55) +##### [push_file](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L61) > def push_file @@ -874,7 +882,7 @@ __Parameters:__ -- -##### [pull_file](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L60) +##### [pull_file](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L66) > def pull_file @@ -891,7 +899,7 @@ __Parameters:__ -- -##### [pull_folder](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L70) +##### [pull_folder](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L76) > def pull_folder @@ -906,7 +914,7 @@ __Parameters:__ -- -##### [touch_id](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L78) +##### [touch_id](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L84) > def touch_id @@ -923,7 +931,7 @@ Defaults to true. -- -##### [end_coverage](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L87) +##### [end_coverage](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L93) > def end_coverage @@ -937,7 +945,7 @@ __Parameters:__ -- -##### [get_settings](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L92) +##### [get_settings](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L98) > def get_settings @@ -945,7 +953,7 @@ Get appium Settings for current test session -- -##### [update_settings](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L95) +##### [update_settings](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L101) > def update_settings @@ -957,7 +965,7 @@ __Parameters:__ -- -##### [start_activity](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L99) +##### [start_activity](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L105) > def start_activity @@ -971,7 +979,7 @@ start_activity app_package: 'io.appium.android.apis', -- -##### [get_network_connection](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L113) +##### [get_network_connection](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L119) > def get_network_connection @@ -980,7 +988,7 @@ See set_network_connection method for return value -- -##### [set_network_connection](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L117) +##### [set_network_connection](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L123) > def set_network_connection @@ -999,7 +1007,7 @@ __Parameters:__ -- -##### [set_immediate_value](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L130) +##### [set_immediate_value](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L136) > def set_immediate_value @@ -1013,7 +1021,7 @@ set_immediate_value element, 'hello' -- -##### [get_performance_data_types](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L139) +##### [get_performance_data_types](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L145) > def get_performance_data_types @@ -1027,7 +1035,7 @@ get_performance_data_types #=> ["cpuinfo", "batteryinfo", "networkinfo", "memory -- -##### [extend_search_contexts](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L388) +##### [extend_search_contexts](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L400) > def extend_search_contexts @@ -1035,7 +1043,7 @@ get_performance_data_types #=> ["cpuinfo", "batteryinfo", "networkinfo", "memory -- -##### [find_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L388) +##### [find_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L400) > def find_element @@ -1043,7 +1051,7 @@ get_performance_data_types #=> ["cpuinfo", "batteryinfo", "networkinfo", "memory -- -##### [find_elements](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L388) +##### [find_elements](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L400) > def find_elements @@ -1055,7 +1063,7 @@ find_element/s with their accessibility_id -- -##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L419) +##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L431) > def add_touch_actions @@ -1063,7 +1071,7 @@ find_element/s with their accessibility_id -- -##### [add_ime_actions](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L442) +##### [add_ime_actions](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L454) > def add_ime_actions @@ -1071,7 +1079,7 @@ find_element/s with their accessibility_id -- -##### [set_context](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L517) +##### [set_context](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L529) > def set_context @@ -1086,7 +1094,7 @@ __Parameters:__ -- -##### [current_context](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L525) +##### [current_context](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L537) > def current_context @@ -1098,7 +1106,7 @@ __Returns:__ -- -##### [available_contexts](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L528) +##### [available_contexts](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L540) > def available_contexts @@ -1110,7 +1118,7 @@ __Returns:__ -- -##### [within_context](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L538) +##### [within_context](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L550) > def within_context(context) @@ -1126,7 +1134,7 @@ __Parameters:__ -- -##### [switch_to_default_context](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/device.rb#L546) +##### [switch_to_default_context](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/device.rb#L558) > def switch_to_default_context @@ -1134,7 +1142,7 @@ Change to the default context. This is equivalent to `set_context nil`. -- -##### [pinch](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L28) +##### [pinch](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L28) > def pinch(percentage = 25, auto_perform = true) @@ -1153,7 +1161,7 @@ __Parameters:__ -- -##### [zoom](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L57) +##### [zoom](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L57) > def zoom(percentage = 200, auto_perform = true) @@ -1172,7 +1180,7 @@ __Parameters:__ -- -##### [pinch_for_xcuitest](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L79) +##### [pinch_for_xcuitest](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L79) > def pinch_for_xcuitest(rate) @@ -1180,7 +1188,7 @@ __Parameters:__ -- -##### [pinch_android](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L94) +##### [pinch_android](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L94) > def pinch_android(rate) @@ -1188,7 +1196,7 @@ __Parameters:__ -- -##### [pinch_ios](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L108) +##### [pinch_ios](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L108) > def pinch_ios(rate) @@ -1196,7 +1204,7 @@ __Parameters:__ -- -##### [zoom_for_xcuitest](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L122) +##### [zoom_for_xcuitest](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L122) > def zoom_for_xcuitest(rate) @@ -1204,7 +1212,7 @@ __Parameters:__ -- -##### [zoom_android](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L137) +##### [zoom_android](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L137) > def zoom_android(rate) @@ -1212,7 +1220,7 @@ __Parameters:__ -- -##### [zoom_ios](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L151) +##### [zoom_ios](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L151) > def zoom_ios(rate) @@ -1220,7 +1228,7 @@ __Parameters:__ -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L167) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L167) > def initialize @@ -1232,7 +1240,7 @@ __Returns:__ -- -##### [add](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L173) +##### [add](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L173) > def add(chain) @@ -1244,7 +1252,7 @@ __Parameters:__ -- -##### [perform](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/multi_touch.rb#L178) +##### [perform](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/multi_touch.rb#L178) > def perform @@ -1252,7 +1260,7 @@ Ask Appium to perform the actions -- -##### [ACTIONS](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L11) +##### [ACTIONS](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L11) > ACTIONS = [:move_to, :long_press, :double_tap, :two_finger_tap, :press, :release, :tap, :wait, :perform].freeze @@ -1260,7 +1268,7 @@ Ask Appium to perform the actions -- -##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L12) +##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L12) > COMPLEX_ACTIONS = [:swipe].freeze @@ -1268,7 +1276,7 @@ Ask Appium to perform the actions -- -##### [actions](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L26) +##### [actions](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L26) > def actions @@ -1276,7 +1284,7 @@ Returns the value of attribute actions -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L28) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L28) > def initialize @@ -1288,7 +1296,7 @@ __Returns:__ -- -##### [move_to](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L39) +##### [move_to](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L39) > def move_to(opts) @@ -1302,7 +1310,7 @@ __Parameters:__ -- -##### [long_press](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L53) +##### [long_press](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L53) > def long_press(opts) @@ -1323,7 +1331,7 @@ __Parameters:__ -- -##### [press](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L65) +##### [press](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L65) > def press(opts) @@ -1336,7 +1344,7 @@ __Parameters:__ -- -##### [release](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L76) +##### [release](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L76) > def release(opts = nil) @@ -1348,7 +1356,7 @@ __Parameters:__ -- -##### [tap](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L88) +##### [tap](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L88) > def tap(opts) @@ -1361,7 +1369,7 @@ __Parameters:__ -- -##### [double_tap](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L101) +##### [double_tap](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L101) > def double_tap(opts) @@ -1373,7 +1381,7 @@ __Parameters:__ -- -##### [two_finger_tap](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L112) +##### [two_finger_tap](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L112) > def two_finger_tap(opts) @@ -1385,7 +1393,7 @@ __Parameters:__ -- -##### [wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L120) +##### [wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L120) > def wait(milliseconds) @@ -1397,7 +1405,7 @@ __Parameters:__ -- -##### [swipe](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L143) +##### [swipe](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L143) > def swipe(opts, ele = nil) @@ -1418,7 +1426,7 @@ __Parameters:__ -- -##### [perform](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L168) +##### [perform](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L168) > def perform @@ -1426,7 +1434,7 @@ Ask the driver to perform all actions in this action chain. -- -##### [cancel](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L174) +##### [cancel](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L174) > def cancel @@ -1434,7 +1442,7 @@ Does nothing, currently. -- -##### [swipe_coordinates](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L180) +##### [swipe_coordinates](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L180) > def swipe_coordinates(end_x: nil, end_y: nil, offset_x: nil, offset_y: nil) @@ -1442,7 +1450,7 @@ Does nothing, currently. -- -##### [chain_method](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L198) +##### [chain_method](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L198) > def chain_method(method, args = nil) @@ -1450,7 +1458,7 @@ Does nothing, currently. -- -##### [args_with_ele_ref](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/device/touch_actions.rb#L204) +##### [args_with_ele_ref](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/device/touch_actions.rb#L204) > def args_with_ele_ref(args) @@ -1458,7 +1466,7 @@ Does nothing, currently. -- -##### [_generic_wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/wait.rb#L9) +##### [_generic_wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/wait.rb#L9) > def _generic_wait(opts = {}) @@ -1467,7 +1475,7 @@ https://github.com/SeleniumHQ/selenium/blob/cf501dda3f0ed12233de51ce8170c0e8090f -- -##### [_process_wait_opts](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/wait.rb#L48) +##### [_process_wait_opts](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/wait.rb#L48) > def _process_wait_opts(opts) @@ -1475,7 +1483,7 @@ process opts before calling _generic_wait -- -##### [wait_true](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/wait.rb#L69) +##### [wait_true](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/wait.rb#L69) > def wait_true(opts = {}, &block) @@ -1495,7 +1503,7 @@ __Parameters:__ -- -##### [wait](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/wait.rb#L87) +##### [wait](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/wait.rb#L87) > def wait(opts = {}, &block) @@ -1513,7 +1521,7 @@ __Parameters:__ -- -##### [ignore](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L24) +##### [ignore](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L24) > def ignore @@ -1521,7 +1529,7 @@ Return yield and ignore any exceptions. -- -##### [back](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L31) +##### [back](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L31) > def back @@ -1533,7 +1541,7 @@ __Returns:__ -- -##### [session_id](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L36) +##### [session_id](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L36) > def session_id @@ -1541,7 +1549,7 @@ For Sauce Labs reporting. Returns the current session id. -- -##### [xpath](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L44) +##### [xpath](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L44) > def xpath(xpath_str) @@ -1557,7 +1565,7 @@ __Returns:__ -- -##### [xpaths](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L52) +##### [xpaths](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L52) > def xpaths(xpath_str) @@ -1573,7 +1581,7 @@ __Returns:__ -- -##### [_print_source](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L56) +##### [_print_source](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L56) > def _print_source(source) @@ -1581,7 +1589,7 @@ __Returns:__ -- -##### [result](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L69) +##### [result](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L69) > def result @@ -1589,7 +1597,7 @@ Returns the value of attribute result -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L71) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L71) > def initialize @@ -1601,7 +1609,7 @@ __Returns:__ -- -##### [reset](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L75) +##### [reset](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L75) > def reset @@ -1609,7 +1617,7 @@ __Returns:__ -- -##### [start_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L80) +##### [start_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L80) > def start_element(name, attrs = []) @@ -1617,7 +1625,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html -- -##### [formatted_result](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L86) +##### [formatted_result](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L86) > def formatted_result @@ -1625,7 +1633,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html -- -##### [get_page_class](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L97) +##### [get_page_class](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L97) > def get_page_class @@ -1633,7 +1641,7 @@ Returns a string of class counts of visible elements. -- -##### [page_class](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L108) +##### [page_class](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L108) > def page_class @@ -1642,7 +1650,7 @@ Useful for appium_console. -- -##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L118) +##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L118) > def px_to_window_rel(opts = {}) @@ -1654,7 +1662,7 @@ px_to_window_rel x: 50, y: 150 -- -##### [xml_keys](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L137) +##### [xml_keys](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L137) > def xml_keys(target) @@ -1670,7 +1678,7 @@ __Returns:__ -- -##### [xml_values](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L145) +##### [xml_values](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L145) > def xml_values(target) @@ -1686,7 +1694,7 @@ __Returns:__ -- -##### [resolve_id](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L153) +##### [resolve_id](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L153) > def resolve_id(id) @@ -1702,7 +1710,7 @@ __Returns:__ -- -##### [filter](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L159) +##### [filter](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L159) > def filter @@ -1710,7 +1718,7 @@ Returns the value of attribute filter -- -##### [filter=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L162) +##### [filter=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L162) > def filter=(value) @@ -1718,7 +1726,7 @@ convert to string to support symbols -- -##### [initialize](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L168) +##### [initialize](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L168) > def initialize @@ -1730,7 +1738,7 @@ __Returns:__ -- -##### [reset](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L173) +##### [reset](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L173) > def reset @@ -1738,7 +1746,7 @@ __Returns:__ -- -##### [result](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L179) +##### [result](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L179) > def result @@ -1746,7 +1754,7 @@ __Returns:__ -- -##### [start_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L195) +##### [start_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L195) > def start_element(name, attrs = []) @@ -1754,7 +1762,7 @@ __Returns:__ -- -##### [end_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L204) +##### [end_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L204) > def end_element(name) @@ -1762,7 +1770,7 @@ __Returns:__ -- -##### [characters](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L210) +##### [characters](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L210) > def characters(chars) @@ -1770,7 +1778,7 @@ __Returns:__ -- -##### [_no_such_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/helper.rb#L217) +##### [_no_such_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/helper.rb#L217) > def _no_such_element @@ -1778,7 +1786,7 @@ __Returns:__ -- -##### [COMMAND_NO_ARG](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/command.rb#L4) +##### [COMMAND_NO_ARG](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/command.rb#L4) > COMMAND_NO_ARG = { @@ -1786,7 +1794,7 @@ __Returns:__ -- -##### [COMMAND](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/command.rb#L24) +##### [COMMAND](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/command.rb#L24) > COMMAND = { @@ -1794,7 +1802,7 @@ __Returns:__ -- -##### [window_size](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/element/window.rb#L5) +##### [window_size](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/element/window.rb#L5) > def window_size @@ -1802,7 +1810,7 @@ Get the window's size -- -##### [FINDERS](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/search_context.rb#L5) +##### [FINDERS](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/search_context.rb#L5) > FINDERS = { @@ -1810,7 +1818,7 @@ rubocop:disable Style/MutableConstant -- -##### [filter](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L4) ios +##### [filter](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L4) ios > def filter @@ -1818,7 +1826,7 @@ Returns the value of attribute filter -- -##### [filter=](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L4) ios +##### [filter=](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L4) ios > def filter=(value) @@ -1830,7 +1838,7 @@ __Parameters:__ -- -##### [start_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L6) ios +##### [start_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L6) ios > def start_element(type, attrs = []) @@ -1838,7 +1846,7 @@ __Parameters:__ -- -##### [_print_attr](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L15) ios +##### [_print_attr](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L15) ios > def _print_attr(type, name, label, value, hint) @@ -1846,7 +1854,7 @@ __Parameters:__ -- -##### [ios_password](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L41) ios +##### [ios_password](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L41) ios > def ios_password(length = 1) @@ -1864,7 +1872,7 @@ __Returns:__ -- -##### [get_page](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L53) ios +##### [get_page](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L53) ios > def get_page(element = source_window(0), class_name = nil) @@ -1885,7 +1893,7 @@ __Returns:__ -- -##### [page](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L139) ios +##### [page](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L139) ios > def page(opts = {}) @@ -1911,7 +1919,7 @@ __Returns:__ -- -##### [source_window](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L170) ios +##### [source_window](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L170) ios > def source_window(_window_number = 0) @@ -1927,7 +1935,7 @@ __Returns:__ -- -##### [page_window](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L185) ios +##### [page_window](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L185) ios > def page_window(window_number = 0) @@ -1945,7 +1953,7 @@ __Returns:__ -- -##### [id](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L193) ios +##### [id](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L193) ios > def id(id) @@ -1961,7 +1969,7 @@ __Returns:__ -- -##### [ios_version](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L199) ios +##### [ios_version](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L199) ios > def ios_version @@ -1973,7 +1981,7 @@ __Returns:__ -- -##### [ele_index](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L212) ios +##### [ele_index](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L212) ios > def ele_index(class_name, index) @@ -1991,7 +1999,7 @@ __Returns:__ -- -##### [find_ele_by_attr](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L248) ios +##### [find_ele_by_attr](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L248) ios > def find_ele_by_attr(class_name, attr, value) @@ -2013,7 +2021,7 @@ __Returns:__ -- -##### [find_eles_by_attr](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L259) ios +##### [find_eles_by_attr](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L259) ios > def find_eles_by_attr(class_name, attr, value) @@ -2035,7 +2043,43 @@ __Returns:__ -- -##### [find_ele_by_attr_include](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L282) ios +##### [find_ele_by_predicate](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L280) ios + +> def find_ele_by_predicate(class_name: '*', value:) + +Find the first element exactly matching attribute case insensitive value. +Note: Uses Predicate + +__Parameters:__ + +     [String] value - the expected value of the attribute + +__Returns:__ + +     [Element] + +-- + +##### [find_eles_by_predicate](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L291) ios + +> def find_eles_by_predicate(class_name: '*', value:) + +Find all elements exactly matching attribute case insensitive value. +Note: Uses Predicate + +__Parameters:__ + +     [String] value - the value of the attribute that the element must have + +     [String] class_name - the tag name to match + +__Returns:__ + +     [Array] + +-- + +##### [find_ele_by_attr_include](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L307) ios > def find_ele_by_attr_include(class_name, attr, value) @@ -2056,7 +2100,7 @@ __Returns:__ -- -##### [find_eles_by_attr_include](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L292) ios +##### [find_eles_by_attr_include](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L317) ios > def find_eles_by_attr_include(class_name, attr, value) @@ -2077,7 +2121,43 @@ __Returns:__ -- -##### [first_ele](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L299) ios +##### [find_ele_by_predicate_include](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L325) ios + +> def find_ele_by_predicate_include(class_name: '*', value:) + +Get the first elements that include insensitive value. +Note: Uses Predicate + +__Parameters:__ + +     [String] value - the value of the attribute that the element must include + +__Returns:__ + +     [Element] the element of type tag who's attribute includes value + +-- + +##### [find_eles_by_predicate_include](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L336) ios + +> def find_eles_by_predicate_include(class_name: '*', value:) + +Get elements that include case insensitive value. +Note: Uses Predicate + +__Parameters:__ + +     [String] value - the value of the attribute that the element must include + +     [String] class_name - the tag name to match + +__Returns:__ + +     [Array] the elements of type tag who's attribute includes value + +-- + +##### [first_ele](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L349) ios > def first_ele(class_name) @@ -2093,7 +2173,7 @@ __Returns:__ -- -##### [last_ele](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L306) ios +##### [last_ele](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L356) ios > def last_ele(class_name) @@ -2109,7 +2189,7 @@ __Returns:__ -- -##### [tag](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L320) ios +##### [tag](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L370) ios > def tag(class_name) @@ -2125,7 +2205,7 @@ __Returns:__ -- -##### [tags](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L332) ios +##### [tags](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L382) ios > def tags(class_name) @@ -2141,7 +2221,7 @@ __Returns:__ -- -##### [tags_include](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L348) ios +##### [tags_include](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L398) ios > def tags_include(class_names:, value: nil) @@ -2161,7 +2241,7 @@ __Returns:__ -- -##### [tags_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L368) ios +##### [tags_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L427) ios > def tags_exact(class_names:, value: nil) @@ -2181,7 +2261,7 @@ __Returns:__ -- -##### [ele_by_json_visible_contains](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L410) ios +##### [ele_by_json_visible_contains](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L478) ios > def ele_by_json_visible_contains(element, value) @@ -2200,7 +2280,7 @@ __Returns:__ -- -##### [eles_by_json_visible_contains](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L419) ios +##### [eles_by_json_visible_contains](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L487) ios > def eles_by_json_visible_contains(element, value) @@ -2219,7 +2299,7 @@ __Returns:__ -- -##### [ele_by_json_visible_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L449) ios +##### [ele_by_json_visible_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L517) ios > def ele_by_json_visible_exact(element, value) @@ -2238,7 +2318,7 @@ __Returns:__ -- -##### [eles_by_json_visible_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L458) ios +##### [eles_by_json_visible_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L526) ios > def eles_by_json_visible_exact(element, value) @@ -2257,7 +2337,7 @@ __Returns:__ -- -##### [_all_pred](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L523) ios +##### [_all_pred](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L591) ios > def _all_pred(opts) @@ -2267,7 +2347,7 @@ visible - if true, only visible elements are returned. default true -- -##### [ele_with_pred](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L536) ios +##### [ele_with_pred](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L604) ios > def ele_with_pred(opts) @@ -2283,7 +2363,7 @@ __Returns:__ -- -##### [eles_with_pred](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L547) ios +##### [eles_with_pred](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L615) ios > def eles_with_pred(opts) @@ -2299,7 +2379,7 @@ __Returns:__ -- -##### [source](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L553) ios +##### [source](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L621) ios > def source @@ -2311,7 +2391,7 @@ __Returns:__ -- -##### [_validate_object](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L557) ios +##### [_validate_object](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L625) ios > def _validate_object(*objects) @@ -2319,7 +2399,7 @@ __Returns:__ -- -##### [_by_json](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L606) ios +##### [_by_json](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L674) ios > def _by_json(opts) @@ -2354,7 +2434,7 @@ opts = { -- -##### [eles_by_json](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L656) ios +##### [eles_by_json](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L724) ios > def eles_by_json(opts) @@ -2373,7 +2453,7 @@ eles_by_json({ -- -##### [ele_by_json](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L662) ios +##### [ele_by_json](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L730) ios > def ele_by_json(opts) @@ -2381,7 +2461,7 @@ see eles_by_json -- -##### [get_source](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/helper.rb#L672) ios +##### [get_source](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/helper.rb#L740) ios > def get_source @@ -2394,7 +2474,7 @@ __Returns:__ -- -##### [UIAStaticText](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L4) ios +##### [UIAStaticText](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L4) ios > UIAStaticText = 'UIAStaticText'.freeze @@ -2402,7 +2482,7 @@ __Returns:__ -- -##### [XCUIElementTypeStaticText](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L5) ios +##### [XCUIElementTypeStaticText](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L5) ios > XCUIElementTypeStaticText = 'XCUIElementTypeStaticText'.freeze @@ -2410,7 +2490,7 @@ __Returns:__ -- -##### [static_text_class](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L8) ios +##### [static_text_class](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L8) ios > def static_text_class @@ -2422,7 +2502,7 @@ __Returns:__ -- -##### [text](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L16) ios +##### [text](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L16) ios > def text(value) @@ -2439,7 +2519,7 @@ __Returns:__ -- -##### [texts](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L30) ios +##### [texts](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L30) ios > def texts(value = false) @@ -2456,7 +2536,7 @@ __Returns:__ -- -##### [first_text](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L43) ios +##### [first_text](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L43) ios > def first_text @@ -2468,7 +2548,7 @@ __Returns:__ -- -##### [last_text](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L49) ios +##### [last_text](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L49) ios > def last_text @@ -2480,7 +2560,7 @@ __Returns:__ -- -##### [text_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L56) ios +##### [text_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L56) ios > def text_exact(value) @@ -2496,7 +2576,7 @@ __Returns:__ -- -##### [texts_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/text.rb#L67) ios +##### [texts_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/text.rb#L67) ios > def texts_exact(value) @@ -2512,7 +2592,7 @@ __Returns:__ -- -##### [alert_accept](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/alert.rb#L5) ios +##### [alert_accept](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/alert.rb#L5) ios > def alert_accept @@ -2524,7 +2604,7 @@ __Returns:__ -- -##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/alert.rb#L13) ios +##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/alert.rb#L13) ios > def alert_dismiss @@ -2536,7 +2616,7 @@ __Returns:__ -- -##### [UIAButton](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L4) ios +##### [UIAButton](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L4) ios > UIAButton = 'UIAButton'.freeze @@ -2544,7 +2624,7 @@ __Returns:__ -- -##### [XCUIElementTypeButton](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L5) ios +##### [XCUIElementTypeButton](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L5) ios > XCUIElementTypeButton = 'XCUIElementTypeButton'.freeze @@ -2552,7 +2632,7 @@ __Returns:__ -- -##### [button_class](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L8) ios +##### [button_class](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L8) ios > def button_class @@ -2564,7 +2644,7 @@ __Returns:__ -- -##### [button](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L16) ios +##### [button](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L16) ios > def button(value) @@ -2581,7 +2661,7 @@ __Returns:__ -- -##### [buttons](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L31) ios +##### [buttons](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L31) ios > def buttons(value = false) @@ -2598,7 +2678,7 @@ __Returns:__ -- -##### [first_button](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L44) ios +##### [first_button](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L44) ios > def first_button @@ -2610,7 +2690,7 @@ __Returns:__ -- -##### [last_button](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L52) ios +##### [last_button](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L52) ios > def last_button @@ -2624,7 +2704,7 @@ __Returns:__ -- -##### [button_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L59) ios +##### [button_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L59) ios > def button_exact(value) @@ -2640,7 +2720,7 @@ __Returns:__ -- -##### [buttons_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/button.rb#L70) ios +##### [buttons_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/button.rb#L70) ios > def buttons_exact(value) @@ -2656,7 +2736,7 @@ __Returns:__ -- -##### [uiautomation_find](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/mobile_methods.rb#L19) ios +##### [uiautomation_find](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/mobile_methods.rb#L19) ios > def uiautomation_find @@ -2668,7 +2748,7 @@ find_element/s can be used with a [UIAutomation command](https://developer.apple -- -##### [ios_predicate_string_find](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/mobile_methods.rb#L19) ios +##### [ios_predicate_string_find](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/mobile_methods.rb#L19) ios > def ios_predicate_string_find @@ -2682,7 +2762,7 @@ find_element/s can be used with a [Predicates](https://developer.apple.com/libra -- -##### [find](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/generic.rb#L6) ios +##### [find](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/generic.rb#L6) ios > def find(value) @@ -2698,7 +2778,7 @@ __Returns:__ -- -##### [finds](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/generic.rb#L17) ios +##### [finds](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/generic.rb#L17) ios > def finds(value) @@ -2714,7 +2794,7 @@ __Returns:__ -- -##### [find_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/generic.rb#L29) ios +##### [find_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/generic.rb#L29) ios > def find_exact(value) @@ -2730,7 +2810,7 @@ __Returns:__ -- -##### [finds_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/generic.rb#L40) ios +##### [finds_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/generic.rb#L40) ios > def finds_exact(value) @@ -2746,7 +2826,7 @@ __Returns:__ -- -##### [raise_error_if_no_element](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/generic.rb#L51) ios +##### [raise_error_if_no_element](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/generic.rb#L51) ios > def raise_error_if_no_element(element) @@ -2754,23 +2834,7 @@ __Returns:__ -- -##### [elements_include](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/generic.rb#L58) ios - -> def elements_include(elements, value) - -Return all elements include not displayed elements. - --- - -##### [elements_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/generic.rb#L72) ios - -> def elements_exact(elements, value) - -Return all elements include not displayed elements. - --- - -##### [select_visible_elements](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/generic.rb#L86) ios +##### [select_visible_elements](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/generic.rb#L58) ios > def select_visible_elements(elements) @@ -2778,7 +2842,7 @@ Return visible elements. -- -##### [UIATextField](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L3) ios +##### [UIATextField](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L3) ios > UIATextField = 'UIATextField'.freeze @@ -2786,7 +2850,7 @@ Return visible elements. -- -##### [UIASecureTextField](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L4) ios +##### [UIASecureTextField](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L4) ios > UIASecureTextField = 'UIASecureTextField'.freeze @@ -2794,7 +2858,7 @@ Return visible elements. -- -##### [XCUIElementTypeTextField](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L6) ios +##### [XCUIElementTypeTextField](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L6) ios > XCUIElementTypeTextField = 'XCUIElementTypeTextField'.freeze @@ -2802,7 +2866,7 @@ Return visible elements. -- -##### [XCUIElementTypeSecureTextField](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L7) ios +##### [XCUIElementTypeSecureTextField](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L7) ios > XCUIElementTypeSecureTextField = 'XCUIElementTypeSecureTextField'.freeze @@ -2810,7 +2874,7 @@ Return visible elements. -- -##### [text_field_class](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L10) ios +##### [text_field_class](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L10) ios > def text_field_class @@ -2822,7 +2886,7 @@ __Returns:__ -- -##### [secure_text_field_class](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L15) ios +##### [secure_text_field_class](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L15) ios > def secure_text_field_class @@ -2834,7 +2898,7 @@ __Returns:__ -- -##### [_textfield_visible](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L41) ios +##### [_textfield_visible](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L35) ios > def _textfield_visible @@ -2842,7 +2906,7 @@ Appium -- -##### [_textfield_exact_string](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L46) ios +##### [_textfield_exact_string](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L40) ios > def _textfield_exact_string(value) @@ -2850,7 +2914,7 @@ Appium -- -##### [_textfield_contains_string](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L53) ios +##### [_textfield_contains_string](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L47) ios > def _textfield_contains_string(value) @@ -2858,7 +2922,7 @@ Appium -- -##### [textfield](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L66) ios +##### [textfield](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L60) ios > def textfield(value) @@ -2876,7 +2940,7 @@ __Returns:__ -- -##### [textfields](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L92) ios +##### [textfields](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L86) ios > def textfields(value = false) @@ -2893,7 +2957,7 @@ __Returns:__ -- -##### [first_textfield](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L105) ios +##### [first_textfield](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L100) ios > def first_textfield @@ -2905,7 +2969,7 @@ __Returns:__ -- -##### [last_textfield](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L115) ios +##### [last_textfield](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L110) ios > def last_textfield @@ -2917,7 +2981,7 @@ __Returns:__ -- -##### [textfield_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L128) ios +##### [textfield_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L123) ios > def textfield_exact(value) @@ -2933,7 +2997,7 @@ __Returns:__ -- -##### [textfields_exact](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/ios/element/textfield.rb#L139) ios +##### [textfields_exact](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/ios/element/textfield.rb#L134) ios > def textfields_exact(value) @@ -2949,7 +3013,7 @@ __Returns:__ -- -##### [value](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L12) +##### [value](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L12) > def value @@ -2959,7 +3023,7 @@ Fixes NoMethodError: undefined method `value' for Selenium::WebDriver::Element -- -##### [name](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L19) +##### [name](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L19) > def name @@ -2969,7 +3033,7 @@ Fixes NoMethodError: undefined method `name' for Selenium::WebDriver::Element -- -##### [location_rel](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L31) +##### [location_rel](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L31) > def location_rel @@ -2987,7 +3051,7 @@ __Returns:__ -- -##### [DEFAULT_HEADERS](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L152) +##### [DEFAULT_HEADERS](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L152) > DEFAULT_HEADERS = { 'Accept' => CONTENT_TYPE, 'User-Agent' => "appium/ruby_lib/#{::Appium::VERSION}" }.freeze @@ -2995,7 +3059,7 @@ __Returns:__ -- -##### [patch_remote_driver_commands](https://github.com/appium/ruby_lib/blob/6e199aeee8b2d5249b0962a8439a5938dd641613/lib/appium_lib/common/patch.rb#L155) +##### [patch_remote_driver_commands](https://github.com/appium/ruby_lib/blob/02da3389a76ed75e42cc8f8f2018dc61cc93c70c/lib/appium_lib/common/patch.rb#L155) > def patch_remote_driver_commands diff --git a/lib/appium_lib/common/version.rb b/lib/appium_lib/common/version.rb index 8d072ece..593d6f7c 100644 --- a/lib/appium_lib/common/version.rb +++ b/lib/appium_lib/common/version.rb @@ -1,5 +1,5 @@ module Appium # Version and Date are defined on the 'Appium' module, not 'Appium::Common' - VERSION = '9.3.3'.freeze unless defined? ::Appium::VERSION - DATE = '2017-02-18'.freeze unless defined? ::Appium::DATE + VERSION = '9.3.4'.freeze unless defined? ::Appium::VERSION + DATE = '2017-03-16'.freeze unless defined? ::Appium::DATE end diff --git a/release_notes.md b/release_notes.md index c6b940df..a5e29adf 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,3 +1,9 @@ +#### v9.3.3 2017-02-18 + +- [422a468](https://github.com/appium/ruby_lib/commit/422a4683f10fc99d3731985d532b71e1fe80b4e6) Release 9 3 3 (#494) +- [c09cf1e](https://github.com/appium/ruby_lib/commit/c09cf1efb33b276d6faf179b1344435df5dc7d16) add tags_include and tags_exact to find value (#490) + + #### v9.3.2 2017-02-11 - [39fd66f](https://github.com/appium/ruby_lib/commit/39fd66f354b6fdd6bba7ae6f5e28f86dc301cdf9) Release 9 3 2 (#487)