appium_lib_core 4.1.0 → 8.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +316 -270
- data/README.md +65 -15
- data/Rakefile +5 -22
- data/appium_lib_core.gemspec +6 -9
- data/bin/console +0 -4
- data/lib/appium_lib_core/android/device/auth_finger_print.rb +4 -1
- data/lib/appium_lib_core/android/device/network.rb +10 -0
- data/lib/appium_lib_core/android/device/performance.rb +3 -0
- data/lib/appium_lib_core/android/device/screen.rb +2 -0
- data/lib/appium_lib_core/android/device.rb +80 -17
- data/lib/appium_lib_core/common/base/bridge.rb +309 -93
- data/lib/appium_lib_core/common/base/capabilities.rb +8 -9
- data/lib/appium_lib_core/common/{command/mjsonwp.rb → base/device_ime.rb} +33 -12
- data/lib/appium_lib_core/common/base/driver.rb +258 -331
- data/lib/appium_lib_core/common/base/driver_settings.rb +51 -0
- data/lib/appium_lib_core/common/base/has_location.rb +80 -0
- data/lib/appium_lib_core/common/base/has_network_connection.rb +56 -0
- data/lib/appium_lib_core/common/base/http_default.rb +15 -38
- data/lib/appium_lib_core/{ios/uiautomation/bridge.rb → common/base/remote_status.rb} +9 -8
- data/lib/appium_lib_core/common/base/rotable.rb +62 -0
- data/lib/appium_lib_core/common/base/screenshot.rb +8 -8
- data/lib/appium_lib_core/common/base/search_context.rb +13 -17
- data/lib/appium_lib_core/common/base.rb +1 -5
- data/lib/appium_lib_core/common/command.rb +244 -4
- data/lib/appium_lib_core/common/device/app_management.rb +2 -26
- data/lib/appium_lib_core/common/device/context.rb +1 -5
- data/lib/appium_lib_core/common/device/image_comparison.rb +12 -4
- data/lib/appium_lib_core/common/device/keyevent.rb +4 -4
- data/lib/appium_lib_core/common/device/{touch_actions.rb → orientation.rb} +6 -10
- data/lib/appium_lib_core/common/error.rb +4 -5
- data/lib/appium_lib_core/common/log.rb +5 -4
- data/lib/appium_lib_core/common/wait.rb +38 -6
- data/lib/appium_lib_core/device.rb +3 -9
- data/lib/appium_lib_core/driver.rb +182 -148
- data/lib/appium_lib_core/{patch.rb → element.rb} +62 -25
- data/lib/appium_lib_core/ios/xcuitest/device.rb +2 -0
- data/lib/appium_lib_core/{common/base/command.rb → mac2/bridge.rb} +9 -8
- data/lib/appium_lib_core/mac2/device/screen.rb +48 -0
- data/lib/appium_lib_core/mac2/device.rb +92 -0
- data/lib/appium_lib_core/{ios.rb → mac2.rb} +2 -5
- data/lib/appium_lib_core/support/event_firing_bridge.rb +57 -0
- data/lib/appium_lib_core/version.rb +2 -2
- data/lib/appium_lib_core.rb +21 -10
- metadata +28 -94
- data/.github/ISSUE_TEMPLATE/issue-report.md +0 -29
- data/.github/contributing.md +0 -26
- data/.github/issue_template.md +0 -20
- data/.github/workflows/unittest.yml +0 -68
- data/.gitignore +0 -18
- data/.rubocop.yml +0 -58
- data/azure-pipelines.yml +0 -15
- data/ci-jobs/functional/android_setup.yml +0 -3
- data/ci-jobs/functional/ios_setup.yml +0 -7
- data/ci-jobs/functional/publish_test_result.yml +0 -18
- data/ci-jobs/functional/run_appium.yml +0 -25
- data/ci-jobs/functional/start-emulator.sh +0 -26
- data/ci-jobs/functional_test.yml +0 -298
- data/docs/mobile_command.md +0 -34
- data/lib/appium_lib_core/common/base/bridge/mjsonwp.rb +0 -81
- data/lib/appium_lib_core/common/base/bridge/w3c.rb +0 -252
- data/lib/appium_lib_core/common/command/common.rb +0 -110
- data/lib/appium_lib_core/common/command/w3c.rb +0 -56
- data/lib/appium_lib_core/common/device/value.rb +0 -52
- data/lib/appium_lib_core/common/touch_action/multi_touch.rb +0 -56
- data/lib/appium_lib_core/common/touch_action/touch_actions.rb +0 -203
- data/lib/appium_lib_core/ios/uiautomation/device.rb +0 -44
- data/lib/appium_lib_core/ios/uiautomation/patch.rb +0 -34
- data/release_notes.md +0 -816
- data/script/commands.rb +0 -200
    
        data/release_notes.md
    DELETED
    
    | @@ -1,816 +0,0 @@ | |
| 1 | 
            -
            #### v4.1.0 2020-12-25
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            - [89110a9](https://github.com/appium/ruby_lib_core/commit/89110a995b869471a134f8c45ebe8dfbaabfba63) Release 4.1.0
         | 
| 4 | 
            -
            - [c833315](https://github.com/appium/ruby_lib_core/commit/c83331560738c0a656509516fc5f610855d5dfed) chore(deps-dev): update rubocop requirement from = 1.6.1 to = 1.7.0 (#294)
         | 
| 5 | 
            -
            - [83d57aa](https://github.com/appium/ruby_lib_core/commit/83d57aa3ad7fd100c081ecc21ab0d5c5d40bf95f) feat: support Ruby 3 (#295)
         | 
| 6 | 
            -
            - [e13c58f](https://github.com/appium/ruby_lib_core/commit/e13c58fe4355dcb2631f0a42248d991165f428f7) feat: bump rubocop (#293)
         | 
| 7 | 
            -
             | 
| 8 | 
            -
             | 
| 9 | 
            -
            #### v4.0.0 2020-12-19
         | 
| 10 | 
            -
             | 
| 11 | 
            -
            - [66e2306](https://github.com/appium/ruby_lib_core/commit/66e23069722d5ccd9ca10f5a1bdf2733cb249a2c) Release 4.0.0
         | 
| 12 | 
            -
            - [4ba9098](https://github.com/appium/ruby_lib_core/commit/4ba9098188b51d3534e35b0fae9340de7100f516) feat: drop forcemjsonwp (#291)
         | 
| 13 | 
            -
            - [5df301c](https://github.com/appium/ruby_lib_core/commit/5df301cb559eed1431cc790655dc89c22be54eb9) chore(deps-dev): update webmock requirement from ~> 3.10.0 to ~> 3.11.0 (#290)
         | 
| 14 | 
            -
            - [76c0ff7](https://github.com/appium/ruby_lib_core/commit/76c0ff7fa540261c5793cde1f79dc14bf752fd35) feat: bump supported ruby version (#289)
         | 
| 15 | 
            -
            - [ea5dd00](https://github.com/appium/ruby_lib_core/commit/ea5dd0008a56821750a5b256b912f252dd46b78d) test: add a few steps
         | 
| 16 | 
            -
            - [9c56f30](https://github.com/appium/ruby_lib_core/commit/9c56f302d46b2ea5d970c79536260720a6bd25ec) docs: add full module path in example
         | 
| 17 | 
            -
            - [f88ae2c](https://github.com/appium/ruby_lib_core/commit/f88ae2c0d6e02d40089298e8bf5ec19b2af012cd) chore: Add mac2 sample and log (#288)
         | 
| 18 | 
            -
            - [39e4611](https://github.com/appium/ruby_lib_core/commit/39e4611adac83dee85c21893fc1f904bf828f21e) ci: bump iOS versions (#287)
         | 
| 19 | 
            -
            - [d76ebdd](https://github.com/appium/ruby_lib_core/commit/d76ebddf0d0f664e49a616a1f94425eba887245e) docs: update badge
         | 
| 20 | 
            -
             | 
| 21 | 
            -
             | 
| 22 | 
            -
            #### v3.11.1 2020-11-20
         | 
| 23 | 
            -
             | 
| 24 | 
            -
            - [4fe582c](https://github.com/appium/ruby_lib_core/commit/4fe582c1318c2b5de83fcf87e36d1fedab8ed81a) Release 3.11.1
         | 
| 25 | 
            -
            - [e017ebc](https://github.com/appium/ruby_lib_core/commit/e017ebcaa8c50653e2f45871465c78ad5a8ce81e) fix: install_app args options bug (#286)
         | 
| 26 | 
            -
            - [e7b881c](https://github.com/appium/ruby_lib_core/commit/e7b881c19be1b3a9acf7d01f34f59307b8e16b89) chore(deps-dev): update webmock requirement from ~> 3.9.1 to ~> 3.10.0 (#284)
         | 
| 27 | 
            -
            - [d1e8cb8](https://github.com/appium/ruby_lib_core/commit/d1e8cb864f00d4f4bd307b523cc205ee2a636d33) feat: add safari and geckodriver (#283)
         | 
| 28 | 
            -
            - [569ea09](https://github.com/appium/ruby_lib_core/commit/569ea09f7777dd2508f1919ddcf9b88aba272647) test: use predicate instead of name for 'value' (#282)
         | 
| 29 | 
            -
            - [e4d63eb](https://github.com/appium/ruby_lib_core/commit/e4d63eb82248a79b41fbbc39db5b03cc35d447cd) ci: remove duplicated test running
         | 
| 30 | 
            -
            - [30be7dc](https://github.com/appium/ruby_lib_core/commit/30be7dca0ec3cdcafa647899447387924970df34) test: fix tests
         | 
| 31 | 
            -
            - [94d4250](https://github.com/appium/ruby_lib_core/commit/94d4250033107ff956a2b9c1f0b30fedba286b5d) test: remove a trick
         | 
| 32 | 
            -
            - [6605f78](https://github.com/appium/ruby_lib_core/commit/6605f78fb0d996faad7f1e21f1876eab5184d430) test: tweak test cases
         | 
| 33 | 
            -
            - [7dbbadb](https://github.com/appium/ruby_lib_core/commit/7dbbadbda69ee2f710393768fb994e8e43adb3bb) fix lint
         | 
| 34 | 
            -
            - [7619052](https://github.com/appium/ruby_lib_core/commit/76190523c95e3f6a1ab9a9af48d60605d2f87266) tweak test cases
         | 
| 35 | 
            -
            - [87cb224](https://github.com/appium/ruby_lib_core/commit/87cb224a3f32261823fd5bacd9349cbe2158b54c) chore(deps-dev): update webmock requirement from ~> 3.8.0 to ~> 3.9.1 (#281)
         | 
| 36 | 
            -
            - [577a75a](https://github.com/appium/ruby_lib_core/commit/577a75a690b6f0688dead506c26704c82ea6f2e9) ci: update for espresso (#280)
         | 
| 37 | 
            -
             | 
| 38 | 
            -
             | 
| 39 | 
            -
            #### v3.11.0 2020-08-01
         | 
| 40 | 
            -
             | 
| 41 | 
            -
            - [0ed888e](https://github.com/appium/ruby_lib_core/commit/0ed888efd87def79cdb1ca922268b466485a2261) Release 3.11.0
         | 
| 42 | 
            -
            - [f7dc534](https://github.com/appium/ruby_lib_core/commit/f7dc5349a48ac305df740f7be1f6e5f9b90e1e0e) chore: update faye-websocket (#279)
         | 
| 43 | 
            -
            - [2fa2440](https://github.com/appium/ruby_lib_core/commit/2fa24404aa993c643191a2de0f8c2c800680ec5f) test: tweak espresso (#278)
         | 
| 44 | 
            -
            - [ba7f71d](https://github.com/appium/ruby_lib_core/commit/ba7f71d82393b75d7119dbb50f8c0ae781d0933e) ci: revert
         | 
| 45 | 
            -
            - [c2cf5d7](https://github.com/appium/ruby_lib_core/commit/c2cf5d7ef04c51e0b978676ea5145223f1b16f2e) test: add allOf example (#274)
         | 
| 46 | 
            -
            - [f7c21b8](https://github.com/appium/ruby_lib_core/commit/f7c21b878ac9970f6d621deedf4c9adce7515700) ci: tweak version
         | 
| 47 | 
            -
            - [2162392](https://github.com/appium/ruby_lib_core/commit/2162392bfa5cc949aae9b4020d6b53b7b23953f9) ci: specify which beta (#273)
         | 
| 48 | 
            -
             | 
| 49 | 
            -
             | 
| 50 | 
            -
            #### v3.10.1 2020-06-29
         | 
| 51 | 
            -
             | 
| 52 | 
            -
            - [9537c61](https://github.com/appium/ruby_lib_core/commit/9537c619220177a4cac82368405fec681a5ab231) Release 3.10.1
         | 
| 53 | 
            -
            - [3b962f5](https://github.com/appium/ruby_lib_core/commit/3b962f55cc954699e72b38c94e5a1f05c82867f9) ci: runs tests on windows host as GitHub Actions (#272)
         | 
| 54 | 
            -
            - [f60b4f1](https://github.com/appium/ruby_lib_core/commit/f60b4f193c590d861342828bd740cefda7e96b9a) ci: remove travis (#271)
         | 
| 55 | 
            -
            - [b1aa80d](https://github.com/appium/ruby_lib_core/commit/b1aa80dd1cc200917df9958b6274e0a82b5ffc40) ci: run unittests on GitHub Actions (#270)
         | 
| 56 | 
            -
            - [ad90f79](https://github.com/appium/ruby_lib_core/commit/ad90f79b726aa480edf989fed2a8b00ced6c52fd) chore: Update issue templates
         | 
| 57 | 
            -
            - [cf546a0](https://github.com/appium/ruby_lib_core/commit/cf546a0c62f815df4bb3ece4932b8033fad25ae2) ci: tune Azure (#269)
         | 
| 58 | 
            -
            - [14e7e56](https://github.com/appium/ruby_lib_core/commit/14e7e56a2bccb4c4cc53e0b10284e3837e50a1af) ci: bump android emulator version (#268)
         | 
| 59 | 
            -
            - [8d2cd95](https://github.com/appium/ruby_lib_core/commit/8d2cd95445d95716617c426e759e19e861ef09e2) chore: remove pry added accidentally
         | 
| 60 | 
            -
             | 
| 61 | 
            -
             | 
| 62 | 
            -
            #### v3.10.0 2020-06-09
         | 
| 63 | 
            -
             | 
| 64 | 
            -
            - [9eff959](https://github.com/appium/ruby_lib_core/commit/9eff959240effde56460c77878a24a20d047f9e9) Release 3.10.0
         | 
| 65 | 
            -
            - [0602e2a](https://github.com/appium/ruby_lib_core/commit/0602e2ab2b332f7db8e39b7da73707a50720fadd) feat: Remove timeout deprecated (#267)
         | 
| 66 | 
            -
             | 
| 67 | 
            -
             | 
| 68 | 
            -
            #### v3.9.0 2020-05-31
         | 
| 69 | 
            -
             | 
| 70 | 
            -
            - [f306188](https://github.com/appium/ruby_lib_core/commit/f306188102222088fbd31b0b9249c6a39ddd074f) Release 3.9.0
         | 
| 71 | 
            -
            - [30c6529](https://github.com/appium/ruby_lib_core/commit/30c65299e4dffb9a2cea8b7a11b27cfcba294707) ci: run with Xcode 11.5 (#265)
         | 
| 72 | 
            -
            - [a10f2d1](https://github.com/appium/ruby_lib_core/commit/a10f2d15ef83e9ce7003b88ec1c0923c922974ea) feat: allow :capabilities as argument (#266)
         | 
| 73 | 
            -
             | 
| 74 | 
            -
             | 
| 75 | 
            -
            #### v3.8.0 2020-05-17
         | 
| 76 | 
            -
             | 
| 77 | 
            -
            - [8986a54](https://github.com/appium/ruby_lib_core/commit/8986a5400d6a3575b7413f15bb61de09af2ec789) Release 3.8.0
         | 
| 78 | 
            -
            - [2379f9a](https://github.com/appium/ruby_lib_core/commit/2379f9a69b43e8c2d2b584ac1e56d3a1aea5e85b) refactor: move idempotency in driver (#264)
         | 
| 79 | 
            -
            - [8103619](https://github.com/appium/ruby_lib_core/commit/8103619313328064df516e7094e2c8a6e1e9719c) fix: x-idempotency-key only for a new session (#263)
         | 
| 80 | 
            -
            - [971f912](https://github.com/appium/ruby_lib_core/commit/971f912a6b4d8e28896d146939c9e5b86dd4b1e0) feat: Add options for start_recording_screen (#261)
         | 
| 81 | 
            -
            - [11f840a](https://github.com/appium/ruby_lib_core/commit/11f840a2945b0376bb3ad762e9b2eefd0aace3b4) ci: add wait
         | 
| 82 | 
            -
            - [4931f4e](https://github.com/appium/ruby_lib_core/commit/4931f4e318e94f9253edd649757f5c774c3404a7) ci: tweak flaky case
         | 
| 83 | 
            -
            - [cb6ef1a](https://github.com/appium/ruby_lib_core/commit/cb6ef1a74dae7200952630076dd58af6bb9500ec) Merge branch 'master' of github.com:appium/ruby_lib_core
         | 
| 84 | 
            -
            - [9117de2](https://github.com/appium/ruby_lib_core/commit/9117de2674f018cfe8e10d9dadc188af846e6be4) ci: relax tests for uia2
         | 
| 85 | 
            -
             | 
| 86 | 
            -
             | 
| 87 | 
            -
            #### v3.7.0 2020-04-18
         | 
| 88 | 
            -
             | 
| 89 | 
            -
            - [5ffe630](https://github.com/appium/ruby_lib_core/commit/5ffe630e670943c6f6f60c0e331cdab4685e31c7) Release 3.7.0
         | 
| 90 | 
            -
            - [e561c8d](https://github.com/appium/ruby_lib_core/commit/e561c8db5b00f1132391f8ea79133c295d39a90b) feat: Add chrome devtools endpoints (#260)
         | 
| 91 | 
            -
            - [73cf85f](https://github.com/appium/ruby_lib_core/commit/73cf85fd6ab5bdfb9df7833a713b8d4df3e51a70) test: add w3c send_keys action
         | 
| 92 | 
            -
            - [b1c36fa](https://github.com/appium/ruby_lib_core/commit/b1c36fa538c145326dc50f49ab4d738478e5e0ac) fix typo
         | 
| 93 | 
            -
            - [350ba7b](https://github.com/appium/ruby_lib_core/commit/350ba7bdafd567dabc9bd54ab1476740c6f54a20) feat: Add x idempotency header (#259)
         | 
| 94 | 
            -
            - [94f16d8](https://github.com/appium/ruby_lib_core/commit/94f16d83909a2fb6111d281a00c0b911a00bb23c) ci: bump to Xcode 11.4 and iOS 13.4 (#257)
         | 
| 95 | 
            -
            - [53b7191](https://github.com/appium/ruby_lib_core/commit/53b7191b89e61d11b06628d710a13dac5ca9dfaf) ci: add -accel auto
         | 
| 96 | 
            -
             | 
| 97 | 
            -
             | 
| 98 | 
            -
            #### v3.6.1 2020-03-16
         | 
| 99 | 
            -
             | 
| 100 | 
            -
            - [46a2277](https://github.com/appium/ruby_lib_core/commit/46a2277e792cc583c9978db3ebd548bfee343942) Release 3.6.1
         | 
| 101 | 
            -
            - [2e28b32](https://github.com/appium/ruby_lib_core/commit/2e28b3205e83358e0aaba79d844c30ac7e29917d) fix: Tweak screen option (#256)
         | 
| 102 | 
            -
             | 
| 103 | 
            -
             | 
| 104 | 
            -
            #### v3.6.0 2020-03-15
         | 
| 105 | 
            -
             | 
| 106 | 
            -
            - [260d45e](https://github.com/appium/ruby_lib_core/commit/260d45e28a36e99e3dedbe8d41e2703c4d3fbdc8) Release 3.6.0
         | 
| 107 | 
            -
            - [e67abd5](https://github.com/appium/ruby_lib_core/commit/e67abd53d188f0a77adb15882dd2151b1c0132e8) feat: add Windows screen record (#255)
         | 
| 108 | 
            -
            - [164fd72](https://github.com/appium/ruby_lib_core/commit/164fd7205944a06055427000b7371311f9dc20a3) ci: Bump ci macOS version (#254)
         | 
| 109 | 
            -
            - [7200f25](https://github.com/appium/ruby_lib_core/commit/7200f255bc5eb74a8fe8b3667db1c004a55092cf) update rubocop yml
         | 
| 110 | 
            -
            - [2fe8c0a](https://github.com/appium/ruby_lib_core/commit/2fe8c0ae01fa3fd2653cd83415f512931adac655) Update webmock requirement from ~> 3.4.0 to ~> 3.8.0 (#253)
         | 
| 111 | 
            -
            - [32dc172](https://github.com/appium/ruby_lib_core/commit/32dc17289f5c130b7f949bfca415e10fa4fe87d7) Update rubocop requirement from = 0.61.0 to = 0.68.1 (#251)
         | 
| 112 | 
            -
            - [7b4402e](https://github.com/appium/ruby_lib_core/commit/7b4402e3c59d3cfee600c6375494eecb2c7c6ddf) Update rake requirement from ~> 12.0 to ~> 13.0 (#252)
         | 
| 113 | 
            -
             | 
| 114 | 
            -
             | 
| 115 | 
            -
            #### v3.5.0 2020-01-11
         | 
| 116 | 
            -
             | 
| 117 | 
            -
            - [79174fd](https://github.com/appium/ruby_lib_core/commit/79174fd6821398eacc32a897c1161140087b11e6) Release 3.5.0
         | 
| 118 | 
            -
            - [21684c5](https://github.com/appium/ruby_lib_core/commit/21684c5a0cf10ccd55b578dfef039b04fcce515f) feat: add mac for only in automation name
         | 
| 119 | 
            -
            - [fc7149c](https://github.com/appium/ruby_lib_core/commit/fc7149cbaa199c5bd460d7af49efa2ef09b04243) feat: Add viewmatcher (#247)
         | 
| 120 | 
            -
             | 
| 121 | 
            -
             | 
| 122 | 
            -
            #### v3.4.2 2019-12-29
         | 
| 123 | 
            -
             | 
| 124 | 
            -
            - [416ad24](https://github.com/appium/ruby_lib_core/commit/416ad247dc8b5fc36fb88a302a3c0bd335911c65) Release 3.4.2
         | 
| 125 | 
            -
            - [e8a3b7a](https://github.com/appium/ruby_lib_core/commit/e8a3b7a04ce6eb0abb2d37e5cc7b50505515ca2a) add attr_reader :bridge for flutter driver usage
         | 
| 126 | 
            -
             | 
| 127 | 
            -
             | 
| 128 | 
            -
            #### v3.4.1 2019-12-27
         | 
| 129 | 
            -
             | 
| 130 | 
            -
            - [93b5a9f](https://github.com/appium/ruby_lib_core/commit/93b5a9f9dc33da7f5ce8c3bf73dcc527fd9224c7) Release 3.4.1
         | 
| 131 | 
            -
            - [73bdb83](https://github.com/appium/ruby_lib_core/commit/73bdb83cf7123469073ff5acf97c994c931e184c) fix warning in Ruby 2.7 more (#249)
         | 
| 132 | 
            -
             | 
| 133 | 
            -
             | 
| 134 | 
            -
            #### v3.4.0 2019-12-26
         | 
| 135 | 
            -
             | 
| 136 | 
            -
            - [416a824](https://github.com/appium/ruby_lib_core/commit/416a824543823d855dafe0f63922c96230bcf614) Release 3.4.0
         | 
| 137 | 
            -
            - [4b6ed64](https://github.com/appium/ruby_lib_core/commit/4b6ed64fb5ffec18001e4618cd81ae385b0ffe44) feat, ci: Fix a few warnings, add Ruby 2.7 on Travis (#241)
         | 
| 138 | 
            -
            - [0b79968](https://github.com/appium/ruby_lib_core/commit/0b79968cc7a1b1814a7dbbd7e77d662b325f931f) run with iOS 13.3 (#248)
         | 
| 139 | 
            -
            - [499b1ae](https://github.com/appium/ruby_lib_core/commit/499b1ae51d7bd446eca410ddea46407176a5d868) test: make ime setting stabler
         | 
| 140 | 
            -
            - [7801efa](https://github.com/appium/ruby_lib_core/commit/7801efa72b10ff3c601374af3e0e7dc68e3c8733) ci: run iOS 13 and Android 10 as CI (#238)
         | 
| 141 | 
            -
            - [92343f4](https://github.com/appium/ruby_lib_core/commit/92343f4e34d5b3a6b3fe66449e9c8984e3c66c2f) test: tweak test case (#245)
         | 
| 142 | 
            -
            - [99ceb6e](https://github.com/appium/ruby_lib_core/commit/99ceb6edea53d292b19bed6ae6efa6b65e14ab4f) remove chromedriver option for install (#243)
         | 
| 143 | 
            -
            - [8899c92](https://github.com/appium/ruby_lib_core/commit/8899c92cb54b6c495329608ab1d4eca0afa6c846) fix wrong yardoc param
         | 
| 144 | 
            -
             | 
| 145 | 
            -
             | 
| 146 | 
            -
            #### v3.3.0 2019-11-08
         | 
| 147 | 
            -
             | 
| 148 | 
            -
            - [7fb0371](https://github.com/appium/ruby_lib_core/commit/7fb03712bb9a743c41aded5348e3c15160ef25cc) Release 3.3.0
         | 
| 149 | 
            -
            - [c232888](https://github.com/appium/ruby_lib_core/commit/c232888f1479c3d2b240bff2ca00835b238a5cb2) feat: add posting log event/getting events (#242)
         | 
| 150 | 
            -
             | 
| 151 | 
            -
             | 
| 152 | 
            -
            #### v3.2.3 2019-09-30
         | 
| 153 | 
            -
             | 
| 154 | 
            -
            - [9af149b](https://github.com/appium/ruby_lib_core/commit/9af149bd3b086e7cb8ac07470c5d097e46ac0b65) Release 3.2.3
         | 
| 155 | 
            -
            - [7634b44](https://github.com/appium/ruby_lib_core/commit/7634b445c6d846d72bcffa8763120cde1dd351ed) test: add landscape simple w3c cllick (#240)
         | 
| 156 | 
            -
            - [b629d6b](https://github.com/appium/ruby_lib_core/commit/b629d6b5d6031399356076d34ca2b8074bc98915) feat: add alias to get_system_bars (#239)
         | 
| 157 | 
            -
            - [377aefd](https://github.com/appium/ruby_lib_core/commit/377aefd061e0464960341f8099597fdd05183516) test: fix wring width and height
         | 
| 158 | 
            -
            - [6f1b5d4](https://github.com/appium/ruby_lib_core/commit/6f1b5d435959542e605a475af86d86dcab68e749) ci: disable opencv to avoid installation error on ci (#237)
         | 
| 159 | 
            -
            - [891fd9a](https://github.com/appium/ruby_lib_core/commit/891fd9ab88a97a6a54c9a7451731befc01b774d2) test: relaxed check logic
         | 
| 160 | 
            -
            - [9ab4035](https://github.com/appium/ruby_lib_core/commit/9ab40353cc76149f55bde40b0349d2cab1f8a88d) test: set ios13 test app (#236)
         | 
| 161 | 
            -
            - [706df5b](https://github.com/appium/ruby_lib_core/commit/706df5b52a944d2a4aef01b9bb435ee57b632327) Merge branch 'master' of github.com:appium/ruby_lib_core
         | 
| 162 | 
            -
            - [01a0efb](https://github.com/appium/ruby_lib_core/commit/01a0efb44fcfc10a3a8c3c85b144245945d18391) add eventTimings for tests
         | 
| 163 | 
            -
            - [625f7a0](https://github.com/appium/ruby_lib_core/commit/625f7a04e2291b0befee2a13a736119ffbbf7b56) ci: Add tests for espresso driver (#235)
         | 
| 164 | 
            -
            - [f739d27](https://github.com/appium/ruby_lib_core/commit/f739d2719b9276e8231bde5f133ec88fbb64b10d) add available contexts at the end of contexts test
         | 
| 165 | 
            -
            - [be245db](https://github.com/appium/ruby_lib_core/commit/be245db7140044ebbe7adaccd3f23ca0ee70f4eb) update ios test app (#234)
         | 
| 166 | 
            -
            - [b42c483](https://github.com/appium/ruby_lib_core/commit/b42c483a0e3089bbc16a6d55642938b658f34892) update ios tests on Azure with the latest app since old test app cause info.plist error (#233)
         | 
| 167 | 
            -
             | 
| 168 | 
            -
             | 
| 169 | 
            -
            #### v3.2.2 2019-08-04
         | 
| 170 | 
            -
             | 
| 171 | 
            -
            - [9679bb0](https://github.com/appium/ruby_lib_core/commit/9679bb0ef49435e8afd7a5688e90ca74447dbbd6) Release 3.2.2
         | 
| 172 | 
            -
            - [73b2fd7](https://github.com/appium/ruby_lib_core/commit/73b2fd7cd803e55e8df23252b0d9be2ca7d4d747) tweak ci env, fix a control flow (#232)
         | 
| 173 | 
            -
            - [9951695](https://github.com/appium/ruby_lib_core/commit/99516950f88c123107f3ee94325a5f64f4985b1d) replace the path
         | 
| 174 | 
            -
             | 
| 175 | 
            -
             | 
| 176 | 
            -
            #### v3.2.1 2019-07-19
         | 
| 177 | 
            -
             | 
| 178 | 
            -
            - [e30a905](https://github.com/appium/ruby_lib_core/commit/e30a90549ac9dd6b0019370ce6abb8a08fc88e82) Release 3.2.1
         | 
| 179 | 
            -
            - [48eaa01](https://github.com/appium/ruby_lib_core/commit/48eaa01c811da8d98ff28a3651d5bed70d310516) Fix check automationName youi (#230)
         | 
| 180 | 
            -
            - [aa0c180](https://github.com/appium/ruby_lib_core/commit/aa0c180cd4eea29888d4307d74382a240e01f7ca) update azure module
         | 
| 181 | 
            -
            - [67df100](https://github.com/appium/ruby_lib_core/commit/67df100c694e1a3d05abba2018d8243b94ba5f9e) Add filters for start_recording_screen, ios, tweak yardoc (#229)
         | 
| 182 | 
            -
            - [2129d17](https://github.com/appium/ruby_lib_core/commit/2129d1780901e9a2cff777e09e0c645e2620e16d) ci: use macOS High Sierra for iOS since it fails on macOS host (#228)
         | 
| 183 | 
            -
            - [307c25c](https://github.com/appium/ruby_lib_core/commit/307c25cc3286df943d740f6e8a64946ba54f66d9) add a cron schedule
         | 
| 184 | 
            -
            - [362405b](https://github.com/appium/ruby_lib_core/commit/362405b857fa3f36b9dfe2c745c10cd288ec577f) ci: tweak skip test cases (#226)
         | 
| 185 | 
            -
            - [80c2c07](https://github.com/appium/ruby_lib_core/commit/80c2c07c3a616c33a6047c87e6b911eaeabc58a0) install opencv4nodejs (#225)
         | 
| 186 | 
            -
            - [47dfc1a](https://github.com/appium/ruby_lib_core/commit/47dfc1adc5493ef279ac098486bf8f94ec04a56e) add npm list task (#224)
         | 
| 187 | 
            -
            - [3944039](https://github.com/appium/ruby_lib_core/commit/3944039413c38cda21be8e93d03461aec7f8d2f1) remove cat
         | 
| 188 | 
            -
            - [2d55315](https://github.com/appium/ruby_lib_core/commit/2d55315d4f2480ac04c9957a26acb090ff2faa15) move cat
         | 
| 189 | 
            -
            - [1555107](https://github.com/appium/ruby_lib_core/commit/15551077dc739b6d1c0b25cc8918e172c2fcaa2c) add a script to show appium dependencies on azure
         | 
| 190 | 
            -
            - [3c0b05c](https://github.com/appium/ruby_lib_core/commit/3c0b05c2dd508273126b7c098c77f22f2c7a54c6) move element methods (#223)
         | 
| 191 | 
            -
             | 
| 192 | 
            -
             | 
| 193 | 
            -
            #### v3.2.0 2019-06-27
         | 
| 194 | 
            -
             | 
| 195 | 
            -
            - [2f6ca23](https://github.com/appium/ruby_lib_core/commit/2f6ca23847de85fb8134f09da627391b4a66a544) Release 3.2.0
         | 
| 196 | 
            -
            - [9376bf2](https://github.com/appium/ruby_lib_core/commit/9376bf2b3d573798ad1d335ca84954b5b5b15abe) add execuite_driver (#222)
         | 
| 197 | 
            -
            - [8b70c86](https://github.com/appium/ruby_lib_core/commit/8b70c866f12f6341dfe204c3b4b1fa8946bbe305) add visual check for find by elemenet (#214)
         | 
| 198 | 
            -
            - [f8338b9](https://github.com/appium/ruby_lib_core/commit/f8338b9386e478c498a1d6bdc4386d9590d3efa3) make uia test simple
         | 
| 199 | 
            -
            - [b641af8](https://github.com/appium/ruby_lib_core/commit/b641af85d1e01a620d0f8cc2d033728947c92afc) wrap with wait
         | 
| 200 | 
            -
             | 
| 201 | 
            -
             | 
| 202 | 
            -
            #### v3.1.3 2019-06-18
         | 
| 203 | 
            -
             | 
| 204 | 
            -
            - [a63da6b](https://github.com/appium/ruby_lib_core/commit/a63da6b9e410d83fe1e1d35a89c430da0eae76b6) Release 3.1.3
         | 
| 205 | 
            -
            - [b979325](https://github.com/appium/ruby_lib_core/commit/b9793257e489edf3ab71b8a371d8e52543040106) add arguments for start activity (#220)
         | 
| 206 | 
            -
            - [5bae56a](https://github.com/appium/ruby_lib_core/commit/5bae56a6d073b22845cbc9c0ace7bbcea22cffa1) fix Azure running methods (#219)
         | 
| 207 | 
            -
            - [a880589](https://github.com/appium/ruby_lib_core/commit/a880589fead59741bba081ebb8053e748feda7c5) test: remove comment-out (#218)
         | 
| 208 | 
            -
            - [c9062c4](https://github.com/appium/ruby_lib_core/commit/c9062c4b744263d790c7de17263cbd4645cdefc6) add mobile command on espresso driver (#213)
         | 
| 209 | 
            -
            - [75e3d16](https://github.com/appium/ruby_lib_core/commit/75e3d163511d2c809a8268e6fc569e3be1bd1be4) tweak func tests for ios13 (#217)
         | 
| 210 | 
            -
            - [8104874](https://github.com/appium/ruby_lib_core/commit/8104874f3372a3ea1c5096adf2e8da4de008fe11) add examples for push/pull data for ios (#216)
         | 
| 211 | 
            -
            - [b379841](https://github.com/appium/ruby_lib_core/commit/b3798414cda497019c33e7ef89ac882a7ad11a67) bump ruby ver on windows, Azure (#215)
         | 
| 212 | 
            -
            - [bb7ba46](https://github.com/appium/ruby_lib_core/commit/bb7ba461fc1afb78cb5d5d3425c989fb6c438585) add android functional tests on azure (#211)
         | 
| 213 | 
            -
            - [d104623](https://github.com/appium/ruby_lib_core/commit/d1046235dbfa1690bab522f8ae16893622582117) Add running func tests for iOS on Azure (#210)
         | 
| 214 | 
            -
            - [ecd16c3](https://github.com/appium/ruby_lib_core/commit/ecd16c37072c173f9f0d8260ebc024e3c402e125) append an item in source test
         | 
| 215 | 
            -
            - [371f653](https://github.com/appium/ruby_lib_core/commit/371f65379c896af070216e5dce9737edf3cca4de) Km/follow file wb mode (#209)
         | 
| 216 | 
            -
             | 
| 217 | 
            -
             | 
| 218 | 
            -
            #### v3.1.2 2019-05-10
         | 
| 219 | 
            -
             | 
| 220 | 
            -
            - [ba2e889](https://github.com/appium/ruby_lib_core/commit/ba2e889434a7405d5caac2adec08536cb6c07415) Release 3.1.2
         | 
| 221 | 
            -
            - [9479f26](https://github.com/appium/ruby_lib_core/commit/9479f26e716dcd65eddd51cd6139acaadd5aa361) add get sessions (#208)
         | 
| 222 | 
            -
            - [48a53f2](https://github.com/appium/ruby_lib_core/commit/48a53f2689fa0ee4ec7b54b8eda063d59278d51a) Add test wda attachment (#207)
         | 
| 223 | 
            -
            - [2d8a8f3](https://github.com/appium/ruby_lib_core/commit/2d8a8f3433f6774a1cc2d76028269ca006ca5273) tweak unit test
         | 
| 224 | 
            -
            - [b936d01](https://github.com/appium/ruby_lib_core/commit/b936d014c1ba2babd79e860df41a2beb8fa22d8d) tweak error messages in emulator module
         | 
| 225 | 
            -
            - [a17be27](https://github.com/appium/ruby_lib_core/commit/a17be27a008dc142e32b3bf745c262be15b1c940) install ffi in Azure env (#206)
         | 
| 226 | 
            -
            - [2ef736a](https://github.com/appium/ruby_lib_core/commit/2ef736a63e86130db819abeef420a82cadca459f) follow method reference
         | 
| 227 | 
            -
             | 
| 228 | 
            -
             | 
| 229 | 
            -
            #### v3.1.1 2019-04-26
         | 
| 230 | 
            -
             | 
| 231 | 
            -
            - [10ebb89](https://github.com/appium/ruby_lib_core/commit/10ebb89716b641293f69d75213c6408a8605b4f9) Release 3.1.1
         | 
| 232 | 
            -
            - [1832c2b](https://github.com/appium/ruby_lib_core/commit/1832c2bcb796e1544d203dfdadea362f7a6e866c) catch Selenium::WebDriver::Error::TimeoutError
         | 
| 233 | 
            -
            - [469a3e4](https://github.com/appium/ruby_lib_core/commit/469a3e445dab4e00471f91325791909485816dcb) tweak test cases
         | 
| 234 | 
            -
            - [afe43d2](https://github.com/appium/ruby_lib_core/commit/afe43d2797e06f635b2e7de6faa8bf97e1139ca3) Merge branch 'master' of github.com:appium/ruby_lib_core
         | 
| 235 | 
            -
            - [c272e1a](https://github.com/appium/ruby_lib_core/commit/c272e1a944e899a011bfd479501b5d420f48a338) add an example of xcodeconfigfile usage
         | 
| 236 | 
            -
            - [afcdabe](https://github.com/appium/ruby_lib_core/commit/afcdabee718b2a5aabfd24fa3a2ebc9f4ef044ca) add not visible error
         | 
| 237 | 
            -
             | 
| 238 | 
            -
             | 
| 239 | 
            -
            #### v3.1.0 2019-03-31
         | 
| 240 | 
            -
             | 
| 241 | 
            -
            - [b1944d8](https://github.com/appium/ruby_lib_core/commit/b1944d8c219fb3744cd337770baa7dd5c20dfd36) Release 3.1.0
         | 
| 242 | 
            -
            - [289940b](https://github.com/appium/ruby_lib_core/commit/289940bf1b2da0b9cc6e34874fb950379515b2c5) Add tvos (#204)
         | 
| 243 | 
            -
            - [a947a0a](https://github.com/appium/ruby_lib_core/commit/a947a0a7f4c26931a3cbe8e21084f7008ac63fd0) fix .nil? check
         | 
| 244 | 
            -
            - [8a35c6e](https://github.com/appium/ruby_lib_core/commit/8a35c6ea99c78e41070a23579a1aae17b67399aa) fix test helper
         | 
| 245 | 
            -
             | 
| 246 | 
            -
             | 
| 247 | 
            -
            #### v3.0.4 2019-03-24
         | 
| 248 | 
            -
             | 
| 249 | 
            -
            - [c430740](https://github.com/appium/ruby_lib_core/commit/c43074089a9ecf18bdd3e5022530117fefcae8ab) Release 3.0.4
         | 
| 250 | 
            -
            - [7691c07](https://github.com/appium/ruby_lib_core/commit/7691c0771703f6ac207a0828c93790efcaaa8300) update android sample app (#203)
         | 
| 251 | 
            -
            - [3d3a0a8](https://github.com/appium/ruby_lib_core/commit/3d3a0a80da62925e61b0c5197a1a87f119e4002a) add UNIT_TEST=true (#202)
         | 
| 252 | 
            -
            - [c49f3ac](https://github.com/appium/ruby_lib_core/commit/c49f3ac31ecf9a978608eeb7f94e988974e57bfc) add UNIT_TEST=true into azure
         | 
| 253 | 
            -
            - [2bcfb17](https://github.com/appium/ruby_lib_core/commit/2bcfb1753df3a7adb0ac2a09274445dd31870447) switchable app and bundleid
         | 
| 254 | 
            -
            - [3fd2088](https://github.com/appium/ruby_lib_core/commit/3fd2088e0d2c0fa14bacdeed95c421995cd0a8b5) skip xcodebuild
         | 
| 255 | 
            -
            - [b3079da](https://github.com/appium/ruby_lib_core/commit/b3079dab4096d67fccfa9808898c5cf074d0a776) make useNewWDA false to make tests faster
         | 
| 256 | 
            -
            - [0f608a0](https://github.com/appium/ruby_lib_core/commit/0f608a03b464dfe71203fadac0854e5663eb9ec0) tweak xctestrun
         | 
| 257 | 
            -
            - [9deda0e](https://github.com/appium/ruby_lib_core/commit/9deda0eca62c145af6a70b826a52fb05f52ac3a2) Add pixel format (#200)
         | 
| 258 | 
            -
            - [9585b16](https://github.com/appium/ruby_lib_core/commit/9585b16104052cb4f9f175c59f08d3bc6992a64f) make permissions tests robust
         | 
| 259 | 
            -
            - [3410a98](https://github.com/appium/ruby_lib_core/commit/3410a98bd67ea18b4c64e3ffe61a6b439a5d1040) add tests for mobile permission commands
         | 
| 260 | 
            -
            - [59ba947](https://github.com/appium/ruby_lib_core/commit/59ba9475002279918038d148d9ae449e49a7aa05) make sure show keyboard
         | 
| 261 | 
            -
            - [9769c8e](https://github.com/appium/ruby_lib_core/commit/9769c8e4fa7ed55eefb37fc5cac04457775f5b56) add push before pull folder
         | 
| 262 | 
            -
            - [150d8c3](https://github.com/appium/ruby_lib_core/commit/150d8c32e71d107da4236726b22afc8343aa68d8) add a comment
         | 
| 263 | 
            -
            - [0da4dbf](https://github.com/appium/ruby_lib_core/commit/0da4dbffa2637ee0746c06ff5d0a432359e61850) insert org id in the path to builds
         | 
| 264 | 
            -
            - [934f4f8](https://github.com/appium/ruby_lib_core/commit/934f4f8f98b8056aa0b3c0d243b862cb1af1e43a) tweak private/public
         | 
| 265 | 
            -
            - [73ab471](https://github.com/appium/ruby_lib_core/commit/73ab4718a616c49676eadc88cc3ecf9e39a81e67) Add useXctestrunFile for ios func tests to reduce the running time (#199)
         | 
| 266 | 
            -
            - [d2767a8](https://github.com/appium/ruby_lib_core/commit/d2767a82c7ac101c82546e08884e020565add099) fix rubocop
         | 
| 267 | 
            -
            - [175ab43](https://github.com/appium/ruby_lib_core/commit/175ab43df3e3b503f4465e4432cc1497845d3658) add ifues description
         | 
| 268 | 
            -
            - [6ed85d7](https://github.com/appium/ruby_lib_core/commit/6ed85d769f685b1fd15c3b977320e867b1be21dd) add wait in order to make this test reliable
         | 
| 269 | 
            -
             | 
| 270 | 
            -
             | 
| 271 | 
            -
            #### v3.0.3 2019-03-11
         | 
| 272 | 
            -
             | 
| 273 | 
            -
            - [b2dc0d9](https://github.com/appium/ruby_lib_core/commit/b2dc0d9ce3ef156da0b40b5e70ec0abd9c493d5a) Release 3.0.3
         | 
| 274 | 
            -
            - [fd2cbde](https://github.com/appium/ruby_lib_core/commit/fd2cbde5466a144ce8dccfc6cf330b969bcc8fd3) Bump target rubyversion 2.3 rubocop (#198)
         | 
| 275 | 
            -
             | 
| 276 | 
            -
             | 
| 277 | 
            -
            #### v3.0.2 2019-03-07
         | 
| 278 | 
            -
             | 
| 279 | 
            -
            - [e2f6010](https://github.com/appium/ruby_lib_core/commit/e2f601086f9daf377270a780d5300687be37ada0) Release 3.0.2
         | 
| 280 | 
            -
            - [90c57cd](https://github.com/appium/ruby_lib_core/commit/90c57cd20013a8d94a479cf8066ff68c2aeef4fe) Add w3c common actions scroll (#197)
         | 
| 281 | 
            -
            - [f95a17d](https://github.com/appium/ruby_lib_core/commit/f95a17d28eb50798eefdd8685cdfb4113472318f) Fixed typo signalStrengh (#196)
         | 
| 282 | 
            -
            - [253c92e](https://github.com/appium/ruby_lib_core/commit/253c92ee3cf04eac4cbcd9014cc916f5b8cb29d6) add tests for find by image with scaled ratio
         | 
| 283 | 
            -
            - [dfc4ca3](https://github.com/appium/ruby_lib_core/commit/dfc4ca37c23cd9cd53690ce0ca9c8981f2747355) fix the name of settings
         | 
| 284 | 
            -
            - [3a811b5](https://github.com/appium/ruby_lib_core/commit/3a811b5004452e82d3915f6c8c6fb87b83cf00b1) define DirectConnections to handle direct connections
         | 
| 285 | 
            -
            - [ae32597](https://github.com/appium/ruby_lib_core/commit/ae32597662b02511c0dfed065890fd4d61e51a28) tweak wait
         | 
| 286 | 
            -
            - [eda0b26](https://github.com/appium/ruby_lib_core/commit/eda0b26085dcb86bf24deb2f778d2ec4b5a7fdc1) tweak appium logger (#195)
         | 
| 287 | 
            -
             | 
| 288 | 
            -
             | 
| 289 | 
            -
            #### v3.0.1 2019-02-25
         | 
| 290 | 
            -
             | 
| 291 | 
            -
            - [8a63795](https://github.com/appium/ruby_lib_core/commit/8a63795df8ac9caa9a5e2208b69211a7db841108) Release 3.0.1
         | 
| 292 | 
            -
            - [4d20509](https://github.com/appium/ruby_lib_core/commit/4d20509acca21e75e8e30a127be52b0c9c75f7a4) Separate appium lib (#194)
         | 
| 293 | 
            -
            - [4c5ff26](https://github.com/appium/ruby_lib_core/commit/4c5ff26b1eb4439f7b8185e91429a3f315cd736a) tweak yardoc
         | 
| 294 | 
            -
            - [22730a7](https://github.com/appium/ruby_lib_core/commit/22730a7dcfcc843c3030f4c89e3f9ee8fbf5c194) add strict find image (#193)
         | 
| 295 | 
            -
            - [f6a3f7f](https://github.com/appium/ruby_lib_core/commit/f6a3f7f6eed308652265bd9527cf584e271292f2) add webatom example (#192)
         | 
| 296 | 
            -
            - [3cd8585](https://github.com/appium/ruby_lib_core/commit/3cd8585b22d4a97958e6df0a29573d8b699e0c98) add a link to matcher
         | 
| 297 | 
            -
            - [1dad363](https://github.com/appium/ruby_lib_core/commit/1dad3639c879b221480c7181b8f0fa74c6a1f6ae) clean yardoc style (#191)
         | 
| 298 | 
            -
            - [712f6b1](https://github.com/appium/ruby_lib_core/commit/712f6b1d614369a35eb9cdf39a8661bd558158ce) add android datamatcher (#190)
         | 
| 299 | 
            -
            - [caa9a9f](https://github.com/appium/ruby_lib_core/commit/caa9a9f7c97fe134166ff1fc629a1a62523d3db4) add links for issues in changelog
         | 
| 300 | 
            -
             | 
| 301 | 
            -
             | 
| 302 | 
            -
            #### v3.0.0 2019-02-06
         | 
| 303 | 
            -
             | 
| 304 | 
            -
            - [ba653c3](https://github.com/appium/ruby_lib_core/commit/ba653c3be70bad3b9a9e233121b4b3a9455fa287) Release 3.0.0
         | 
| 305 | 
            -
            - [77e7cd2](https://github.com/appium/ruby_lib_core/commit/77e7cd2f58bcc1fb368f9721fe071b210e071435) Release 3.0.0
         | 
| 306 | 
            -
            - [1315dae](https://github.com/appium/ruby_lib_core/commit/1315dae75712b65707b8b519228860d6d89ac96c) set default zero implicit wait (#186)
         | 
| 307 | 
            -
            - [61a927f](https://github.com/appium/ruby_lib_core/commit/61a927f6e6f15b718cf6b4bfb8a26242e571a2f9) Experimental add direct host (#189)
         | 
| 308 | 
            -
            - [c9fff7b](https://github.com/appium/ruby_lib_core/commit/c9fff7b3e12eaa20a55742460147d7694f61658d) Improve override background (#188)
         | 
| 309 | 
            -
            - [1e588c8](https://github.com/appium/ruby_lib_core/commit/1e588c87842f3844763e6c9559087302219280ab) update changelog
         | 
| 310 | 
            -
             | 
| 311 | 
            -
             | 
| 312 | 
            -
            #### v2.3.4 2019-01-31
         | 
| 313 | 
            -
             | 
| 314 | 
            -
            - [f217263](https://github.com/appium/ruby_lib_core/commit/f217263febd2bd3d6c8663f440d7959096492f7a) Release 2.3.4
         | 
| 315 | 
            -
            - [04e5851](https://github.com/appium/ruby_lib_core/commit/04e58517403f215d6d5a27adac815248d15ac23d) add pressure option for touch action (#187)
         | 
| 316 | 
            -
            - [6676e1f](https://github.com/appium/ruby_lib_core/commit/6676e1fa5ad7dfac4895033ad4a571eeb17697ff) Donotsend unused value start activity (#185)
         | 
| 317 | 
            -
            - [513400f](https://github.com/appium/ruby_lib_core/commit/513400f087e3091cff7801f924d90e5ee8118213) tweak start activity test
         | 
| 318 | 
            -
             | 
| 319 | 
            -
             | 
| 320 | 
            -
            #### v2.3.3 2019-01-22
         | 
| 321 | 
            -
             | 
| 322 | 
            -
            - [867d55f](https://github.com/appium/ruby_lib_core/commit/867d55f2e77c17c3576a56df687fba0e02063530) Release 2.3.3
         | 
| 323 | 
            -
            - [3f77722](https://github.com/appium/ruby_lib_core/commit/3f77722aef0c4e80f05904a01d28632cb07549ff) fix method_missing not having the correct signature (#184)
         | 
| 324 | 
            -
            - [99579f8](https://github.com/appium/ruby_lib_core/commit/99579f8597e927cf0154afedbd916001d4d99e70) tweak changelog
         | 
| 325 | 
            -
             | 
| 326 | 
            -
             | 
| 327 | 
            -
            #### v2.3.2 2019-01-20
         | 
| 328 | 
            -
             | 
| 329 | 
            -
            - [77aa44a](https://github.com/appium/ruby_lib_core/commit/77aa44a930335d64dd8f8107f93f131f4983c578) Release 2.3.2
         | 
| 330 | 
            -
            - [d6967b1](https://github.com/appium/ruby_lib_core/commit/d6967b193cc4b5d040bccf6290fadc566c14aa3b) Add alias for ime, settings and device locked (#183)
         | 
| 331 | 
            -
            - [9abb158](https://github.com/appium/ruby_lib_core/commit/9abb158510ce871d4d3a2b35eb3aed7e43344c20) Server error (#182)
         | 
| 332 | 
            -
            - [76b1cc2](https://github.com/appium/ruby_lib_core/commit/76b1cc2d42e953b6dc7800549ad664262acca717) add a comment for creating session without deleting previous session
         | 
| 333 | 
            -
            - [e304e54](https://github.com/appium/ruby_lib_core/commit/e304e54c9e0c5e043fdb943c7eff952d2cd5a1fe) add teardown
         | 
| 334 | 
            -
             | 
| 335 | 
            -
             | 
| 336 | 
            -
            #### v2.3.1 2019-01-13
         | 
| 337 | 
            -
             | 
| 338 | 
            -
            - [12ace90](https://github.com/appium/ruby_lib_core/commit/12ace906df63a8e4d4377b402ada2d90bd7509af) Release 2.3.1
         | 
| 339 | 
            -
            - [d104fc9](https://github.com/appium/ruby_lib_core/commit/d104fc91e849dc183267ecd3a4074e9fa1c94a38) Tweak test cases for espresso (#181)
         | 
| 340 | 
            -
            - [4e65bda](https://github.com/appium/ruby_lib_core/commit/4e65bdae1c044263a78fe715d63458d47707bd5a) add youiengine to leave a log in create session
         | 
| 341 | 
            -
            - [acef11c](https://github.com/appium/ruby_lib_core/commit/acef11c37666abca7da93a6e613a92307fad4fd4) tweak yardoc format
         | 
| 342 | 
            -
             | 
| 343 | 
            -
             | 
| 344 | 
            -
            #### v2.3.0 2019-01-07
         | 
| 345 | 
            -
             | 
| 346 | 
            -
            - [b1b66a4](https://github.com/appium/ruby_lib_core/commit/b1b66a4745b8769bdcd860d7489326933bce5ff6) Release 2.3.0
         | 
| 347 | 
            -
            - [680577d](https://github.com/appium/ruby_lib_core/commit/680577d83356fc19d5fc435d5e49f0fea3c1442a) add alias for app_state (#180)
         | 
| 348 | 
            -
            - [a590511](https://github.com/appium/ruby_lib_core/commit/a5905115a9f45aa1e2da4977ecf35c9755f3da95) add screen recording (#179)
         | 
| 349 | 
            -
            - [f4693af](https://github.com/appium/ruby_lib_core/commit/f4693afbec54a9d4331e17dfc8ea4d0b12848921) add driver.quit
         | 
| 350 | 
            -
            - [2c0f092](https://github.com/appium/ruby_lib_core/commit/2c0f09249e2f83add708c6cdb5a93f1964e61a1c) add ruby 2.6.0 into travis (#178)
         | 
| 351 | 
            -
            - [ffe14bd](https://github.com/appium/ruby_lib_core/commit/ffe14bd8263becfc4cac1446dba62ca6544c886b) Sends strict base64 format to server (#177)
         | 
| 352 | 
            -
            - [f1ddf27](https://github.com/appium/ruby_lib_core/commit/f1ddf277b35e672040be43fd4d708c06ce7d367e) add test for picker wheel for ios
         | 
| 353 | 
            -
             | 
| 354 | 
            -
             | 
| 355 | 
            -
            #### v2.2.2 2018-12-22
         | 
| 356 | 
            -
             | 
| 357 | 
            -
            - [6415256](https://github.com/appium/ruby_lib_core/commit/6415256f9808a92e5d82e9556e9533db9273f2fa) Release 2.2.2
         | 
| 358 | 
            -
            - [a1a3f09](https://github.com/appium/ruby_lib_core/commit/a1a3f0902dfa9c664a1c656cbee15cb18ba978a7) tweak skiping opencv4nodejs
         | 
| 359 | 
            -
            - [5fcba56](https://github.com/appium/ruby_lib_core/commit/5fcba566be04a3eb0f7ea565005d6ec50cc9b882) tweak http request header (#176)
         | 
| 360 | 
            -
             | 
| 361 | 
            -
             | 
| 362 | 
            -
            #### v2.2.1 2018-12-08
         | 
| 363 | 
            -
             | 
| 364 | 
            -
            - [0b46567](https://github.com/appium/ruby_lib_core/commit/0b46567c2abc764b80c72516429038d7b1805107) Release 2.2.1
         | 
| 365 | 
            -
            - [ff222bd](https://github.com/appium/ruby_lib_core/commit/ff222bd419caccba7ffad8a9e14a07d21261ef8b) Fix warning (#174)
         | 
| 366 | 
            -
            - [1cefd42](https://github.com/appium/ruby_lib_core/commit/1cefd426eccf693dfe4a990b387cbfa6384e9f55) add smoothScroll
         | 
| 367 | 
            -
            - [2a3ea37](https://github.com/appium/ruby_lib_core/commit/2a3ea372c855f9d81112785384545a3fccfa72a3) Add tests (#173)
         | 
| 368 | 
            -
            - [116e78a](https://github.com/appium/ruby_lib_core/commit/116e78a79a8b4c56d508937a6df24ded7526a63b) Add mobile command examples in test (#172)
         | 
| 369 | 
            -
            - [3c566a8](https://github.com/appium/ruby_lib_core/commit/3c566a8573f3b4ca43ff0e6c9faf2f7a6fa08d0e) fix rubocop
         | 
| 370 | 
            -
             | 
| 371 | 
            -
             | 
| 372 | 
            -
            #### v2.2.0 2018-12-01
         | 
| 373 | 
            -
             | 
| 374 | 
            -
            - [fe495cc](https://github.com/appium/ruby_lib_core/commit/fe495cc66f8ed3744590488b6d1508ce47f6190a) Release 2.2.0
         | 
| 375 | 
            -
            - [1321251](https://github.com/appium/ruby_lib_core/commit/1321251a2af7c4a629931e5310370915e2031930) tweak tests
         | 
| 376 | 
            -
            - [3a99ab9](https://github.com/appium/ruby_lib_core/commit/3a99ab93239b375f921b777068d53444980fcedd) remove deprecation code (#171)
         | 
| 377 | 
            -
            - [85e332d](https://github.com/appium/ruby_lib_core/commit/85e332d854d124b97c266145f1d503a7fe0fb9b9) add mobile command func tests (#170)
         | 
| 378 | 
            -
            - [e96b628](https://github.com/appium/ruby_lib_core/commit/e96b628f50b3a53309539746b48fb027b34e26b4) add put
         | 
| 379 | 
            -
            - [3e21f36](https://github.com/appium/ruby_lib_core/commit/3e21f3621e5ebf432a41ad25ce7e50dcfea973dc) Add azure pipeline to run tests on windows (#169)
         | 
| 380 | 
            -
            - [44a0fff](https://github.com/appium/ruby_lib_core/commit/44a0fff997e1308d3885d710a04d251b0e64211e) add siri func test for mobile command (#167)
         | 
| 381 | 
            -
             | 
| 382 | 
            -
             | 
| 383 | 
            -
            #### v2.1.1 2018-11-23
         | 
| 384 | 
            -
             | 
| 385 | 
            -
            - [56e3904](https://github.com/appium/ruby_lib_core/commit/56e39043a9cd65205dd75632863d5911fac80d96) Release 2.1.1
         | 
| 386 | 
            -
            - [64bea89](https://github.com/appium/ruby_lib_core/commit/64bea89301606d984de1a6d0b926ebe3c4f81e99) update screenshot test for ios (#166)
         | 
| 387 | 
            -
            - [4790685](https://github.com/appium/ruby_lib_core/commit/4790685b6ee8b3a34539da5ed2612b3171ecb2cf) append https://help.apple.com/instruments/mac/current/#
         | 
| 388 | 
            -
            - [0600769](https://github.com/appium/ruby_lib_core/commit/0600769e945349c9bb598a3a4af4381c53313699) update test_start_performance_record_and_stop
         | 
| 389 | 
            -
            - [69080b1](https://github.com/appium/ruby_lib_core/commit/69080b16e1c02a729b8edf56efabf4dde9e76e23) Add screenshot quality tests (#165)
         | 
| 390 | 
            -
            - [e1d6b11](https://github.com/appium/ruby_lib_core/commit/e1d6b11da52b2472240307b063f171c23b98c78c) Add tests for mjpeg and recording screen (#164)
         | 
| 391 | 
            -
            - [8042627](https://github.com/appium/ruby_lib_core/commit/804262784ba9e444a6c28952d99d5c9dfdf6e9a1) tweak rubocop in Rakefile
         | 
| 392 | 
            -
            - [eff797d](https://github.com/appium/ruby_lib_core/commit/eff797df68b318b3895d2ee5249540070f3365ba) make desired_capabilities name available in the capability (#163)
         | 
| 393 | 
            -
            - [de80883](https://github.com/appium/ruby_lib_core/commit/de808835203efc9e52a9efbc3121a10a1cb4c3d5) remove unused const
         | 
| 394 | 
            -
            - [2a398c5](https://github.com/appium/ruby_lib_core/commit/2a398c54d680851f8b2dc3b6bea8fe3a1e052fdb) remove pry
         | 
| 395 | 
            -
            - [d07be96](https://github.com/appium/ruby_lib_core/commit/d07be96e1c25a6262703d778a4246c989fd03de6) add a --chromedriver_version in _web
         | 
| 396 | 
            -
            - [fd46ae8](https://github.com/appium/ruby_lib_core/commit/fd46ae870efd21467ff2c6228fc2012d71b2e307) add a description for this
         | 
| 397 | 
            -
            - [6e4dbe7](https://github.com/appium/ruby_lib_core/commit/6e4dbe72adb1b788daa639853fa1b8cbfb304a91) add one note for start_recording_screen
         | 
| 398 | 
            -
            - [6b74a67](https://github.com/appium/ruby_lib_core/commit/6b74a67b9cbadadaf8e721866f5a4a539ea20b31) remove unneeded line in doc
         | 
| 399 | 
            -
             | 
| 400 | 
            -
             | 
| 401 | 
            -
            #### v2.1.0 2018-11-14
         | 
| 402 | 
            -
             | 
| 403 | 
            -
            - [6dafbd6](https://github.com/appium/ruby_lib_core/commit/6dafbd6cbc270f94a5e8b2ea5a779b644fdc3cdf) Release 2.1.0
         | 
| 404 | 
            -
            - [995cd5b](https://github.com/appium/ruby_lib_core/commit/995cd5b2b27ef9a52a877835c6cfa5cf79e24183) sync video_fps (#162)
         | 
| 405 | 
            -
            - [c1b9ee8](https://github.com/appium/ruby_lib_core/commit/c1b9ee8eb413a6bc2f4c8d37a1225eaedea210b1) add reduceMotion
         | 
| 406 | 
            -
            - [8f26efd](https://github.com/appium/ruby_lib_core/commit/8f26efd29656aa4d79c9e2d2c5d1846f7339f67c) make no app warning
         | 
| 407 | 
            -
            - [a549a8a](https://github.com/appium/ruby_lib_core/commit/a549a8ab1977e86bc29533a829cd9bc69067d24e) Add url param like selenium-webdriver (#161)
         | 
| 408 | 
            -
            - [6603750](https://github.com/appium/ruby_lib_core/commit/66037503fc83155b40af56221f0f0762f7803d58) add mobile permission commands (#160)
         | 
| 409 | 
            -
             | 
| 410 | 
            -
             | 
| 411 | 
            -
            #### v2.0.6 2018-11-08
         | 
| 412 | 
            -
             | 
| 413 | 
            -
            - [b7ede91](https://github.com/appium/ruby_lib_core/commit/b7ede919a26b4d83b88955cb7d595a8538f5c146) Release 2.0.6
         | 
| 414 | 
            -
            - [3f04490](https://github.com/appium/ruby_lib_core/commit/3f04490b6c64f38cbc191ac2e4486eefbe3ea727) add desc in some rake tasks
         | 
| 415 | 
            -
            - [c4670c2](https://github.com/appium/ruby_lib_core/commit/c4670c2a275042d6297067f810de01d00be2333f) Allow update pi versioning (#159)
         | 
| 416 | 
            -
            - [2dd19fa](https://github.com/appium/ruby_lib_core/commit/2dd19fa70b2fbf4684776ebcd438f133d426a91a) Update mobile_command.md
         | 
| 417 | 
            -
            - [f8af2e3](https://github.com/appium/ruby_lib_core/commit/f8af2e3e8dbff2e6616c554db6394b42c588ddeb) append a test of push file
         | 
| 418 | 
            -
            - [442e787](https://github.com/appium/ruby_lib_core/commit/442e787851dfd47a7a0b4caed7f4712444c6ebac) tweak readme
         | 
| 419 | 
            -
            - [7183715](https://github.com/appium/ruby_lib_core/commit/718371524cbc977b2bf8b0b242f95ba92ca5037a) bump and fix rubocop (#158)
         | 
| 420 | 
            -
            - [6b9f74d](https://github.com/appium/ruby_lib_core/commit/6b9f74d0b66ebf4a512dee77fa4657230ee27990) remove one todo
         | 
| 421 | 
            -
            - [3a42bc3](https://github.com/appium/ruby_lib_core/commit/3a42bc301f76466266efa31b7919f6418fc9680b) fix rubocop
         | 
| 422 | 
            -
            - [92712d4](https://github.com/appium/ruby_lib_core/commit/92712d4dcca1da3902e5aeea8e7eb78c3a116f17) add chrome option into helper
         | 
| 423 | 
            -
            - [2bfc6b5](https://github.com/appium/ruby_lib_core/commit/2bfc6b53034ab5076fdea3dd67fb01445ab8d7ed) add MjpegServerTest
         | 
| 424 | 
            -
            - [a84aa18](https://github.com/appium/ruby_lib_core/commit/a84aa18291d003655584262872004c3c835fa70d) add adbExecTimeout as an example for test
         | 
| 425 | 
            -
            - [6400a8d](https://github.com/appium/ruby_lib_core/commit/6400a8def717cc1deb8933e23c4bfa253cc3e1e6) increase w3c functional tests for android (#157)
         | 
| 426 | 
            -
             | 
| 427 | 
            -
             | 
| 428 | 
            -
            #### v2.0.5 2018-10-30
         | 
| 429 | 
            -
             | 
| 430 | 
            -
            - [3197865](https://github.com/appium/ruby_lib_core/commit/31978651941fb169b2d63bb35aeb6005622ca9bc) Release 2.0.5
         | 
| 431 | 
            -
            - [fd9d4f5](https://github.com/appium/ruby_lib_core/commit/fd9d4f58e352b087a2b58b05aa7a8dbd764e6e36) fix typo
         | 
| 432 | 
            -
            - [daa28da](https://github.com/appium/ruby_lib_core/commit/daa28dae06edb67a483fbc5843ca885f6a8bae08) use &: operator
         | 
| 433 | 
            -
            - [cef57da](https://github.com/appium/ruby_lib_core/commit/cef57dafa8b18fcd9b0a00edc2f9075f8fea4f5f) add size check in page source for easy regression
         | 
| 434 | 
            -
            - [633cc0f](https://github.com/appium/ruby_lib_core/commit/633cc0f37b8232c17d7bfdd22c63b38dbf6cbcfb) add a test of state element reference error
         | 
| 435 | 
            -
            - [10558f2](https://github.com/appium/ruby_lib_core/commit/10558f26b3c983f218ce1ba21bd1be96516b7329) Add parallel android tests (#156)
         | 
| 436 | 
            -
            - [72a1827](https://github.com/appium/ruby_lib_core/commit/72a18279fa4f52c2791901c93dd9d5e0c2491834) separate test cases which depends on other libraries, improvements (#155)
         | 
| 437 | 
            -
            - [585b151](https://github.com/appium/ruby_lib_core/commit/585b15110675d6943776ba147dd4b22b6e5e6b22) Remove default value (#154)
         | 
| 438 | 
            -
            - [a0b4685](https://github.com/appium/ruby_lib_core/commit/a0b4685b2722088575d50bcb77c8fc4cb6548d71) add version number in changelog
         | 
| 439 | 
            -
             | 
| 440 | 
            -
             | 
| 441 | 
            -
            #### v2.0.4 2018-10-19
         | 
| 442 | 
            -
             | 
| 443 | 
            -
            - [e0db5f9](https://github.com/appium/ruby_lib_core/commit/e0db5f9fb1ae6178fb16254d76d429bceaecdae4) Release 2.0.4
         | 
| 444 | 
            -
            - [70d71cd](https://github.com/appium/ruby_lib_core/commit/70d71cd5ca026f22bb9b22159f6e14629505430f) zip test app (#152)
         | 
| 445 | 
            -
            - [6222a62](https://github.com/appium/ruby_lib_core/commit/6222a62fb6e9d2f13d8deea7e27cb3d11bee86d4) add custom locator (#151)
         | 
| 446 | 
            -
             | 
| 447 | 
            -
             | 
| 448 | 
            -
            #### v2.0.3 2018-10-11
         | 
| 449 | 
            -
             | 
| 450 | 
            -
            - [9afbc4c](https://github.com/appium/ruby_lib_core/commit/9afbc4c929a1b9d882e441bf456036cf3386d0ae) Release 2.0.3
         | 
| 451 | 
            -
            - [a626518](https://github.com/appium/ruby_lib_core/commit/a62651825dffdd3be52619f5497e1b36dfbb0ce5) use selenium 3.14.1 (#150)
         | 
| 452 | 
            -
            - [8677335](https://github.com/appium/ruby_lib_core/commit/8677335f18e6687d5aa32c91c41b6adcdfee564f) bump test ios version (#148)
         | 
| 453 | 
            -
            - [381a9d2](https://github.com/appium/ruby_lib_core/commit/381a9d2106ce7e0b4e1c28334b70181eb9377d4e) add tests for symbolize_keys (#146)
         | 
| 454 | 
            -
            - [b54ce1e](https://github.com/appium/ruby_lib_core/commit/b54ce1ebc7a562d6c9b31d3d3da1556694827bcc) add caps for chrome
         | 
| 455 | 
            -
            - [bdccc0f](https://github.com/appium/ruby_lib_core/commit/bdccc0f374a60388b081fc3ccd556ff94ac7c428) add comments for w3c spec in search context
         | 
| 456 | 
            -
            - [8f2cf1d](https://github.com/appium/ruby_lib_core/commit/8f2cf1d4aec26a94683250736f8aa9cfed0a8a3d) tweak default wait time
         | 
| 457 | 
            -
             | 
| 458 | 
            -
             | 
| 459 | 
            -
            #### v2.0.2 2018-10-02
         | 
| 460 | 
            -
             | 
| 461 | 
            -
            - [8a1c128](https://github.com/appium/ruby_lib_core/commit/8a1c1282ecdff628d3cd6508dbf455a9884a816d) Release 2.0.2
         | 
| 462 | 
            -
            - [7519e45](https://github.com/appium/ruby_lib_core/commit/7519e45792fa618254c89f1ac9f4245718b8b3ea) add aliases (#145)
         | 
| 463 | 
            -
            - [ba9dd3c](https://github.com/appium/ruby_lib_core/commit/ba9dd3c06e128421a256a06638483f584df6b59f) add test_mobile_perform_action (#144)
         | 
| 464 | 
            -
            - [1ee07f2](https://github.com/appium/ruby_lib_core/commit/1ee07f28e9213380cb3e222ddad19d508c56df24) move a place of finger_print
         | 
| 465 | 
            -
            - [672929f](https://github.com/appium/ruby_lib_core/commit/672929fed1a8a58b4462f4787218524f888b003c) tweak module name
         | 
| 466 | 
            -
            - [4e2bfc0](https://github.com/appium/ruby_lib_core/commit/4e2bfc01f9771eba0a39bce7b2048f3586e726fe) add finger print feature (#142)
         | 
| 467 | 
            -
            - [ee6756b](https://github.com/appium/ruby_lib_core/commit/ee6756b77d9d3b36c3a7bd7f3d758607b8c74a4b) update command check rake task
         | 
| 468 | 
            -
            - [e5e889b](https://github.com/appium/ruby_lib_core/commit/e5e889b3510dc7e4c7f11be0b53dcfef20f95769) add tests for location in webdriver commands
         | 
| 469 | 
            -
             | 
| 470 | 
            -
             | 
| 471 | 
            -
            #### v2.0.1 2018-09-01
         | 
| 472 | 
            -
             | 
| 473 | 
            -
            - [f0382b5](https://github.com/appium/ruby_lib_core/commit/f0382b5e30a43e187cb47504d82a7a5b6829c1d4) Release 2.0.1
         | 
| 474 | 
            -
            - [d8e4ba2](https://github.com/appium/ruby_lib_core/commit/d8e4ba2138ee2a914b669d1a10718dbc30781bcb) rename and tweak multiple actions (#141)
         | 
| 475 | 
            -
            - [de2d747](https://github.com/appium/ruby_lib_core/commit/de2d747a62c0fc118bedc6c4e4fb84f4acb00e5b) add send_actions for w3c multiple actions (#140)
         | 
| 476 | 
            -
            - [bbbc6f5](https://github.com/appium/ruby_lib_core/commit/bbbc6f559f97aaac9521338a9b2ff5261955362a) fix capabilities for selenium grid (#138)
         | 
| 477 | 
            -
            - [02a61ce](https://github.com/appium/ruby_lib_core/commit/02a61ce17939fea039f65e8f25092a864b7b12d8) fix rubocop
         | 
| 478 | 
            -
            - [9439031](https://github.com/appium/ruby_lib_core/commit/9439031445fa23c15463fbf04de157152d2d5b08) add scrolling for ios
         | 
| 479 | 
            -
             | 
| 480 | 
            -
             | 
| 481 | 
            -
            #### v2.0.0 2018-08-25
         | 
| 482 | 
            -
             | 
| 483 | 
            -
            - [6761ec3](https://github.com/appium/ruby_lib_core/commit/6761ec3c29c762ad5617cd42cce4eaa098f81491) Release 2.0.0
         | 
| 484 | 
            -
            - [e2feb5e](https://github.com/appium/ruby_lib_core/commit/e2feb5e864358ed4eb4cb61914724c1d951c34ce) get rid of self from Appium::Core.for(self, opts) (#136)
         | 
| 485 | 
            -
            - [b1c7137](https://github.com/appium/ruby_lib_core/commit/b1c7137bebe1fc1eed869c12eecece493e206c7b) use autoload (#135)
         | 
| 486 | 
            -
            - [04dc656](https://github.com/appium/ruby_lib_core/commit/04dc656486d1b19d6ea63c1f9dd8e8ab51c26e86) separate unit tests
         | 
| 487 | 
            -
            - [1174ad1](https://github.com/appium/ruby_lib_core/commit/1174ad1cd08091277547fb12ca5bdb7f571d9ab3) separate test cases
         | 
| 488 | 
            -
            - [862e587](https://github.com/appium/ruby_lib_core/commit/862e587c50171e35d04f6a5c0645bf6159dfad96) Update tests for espresso aswell (#134)
         | 
| 489 | 
            -
            - [80c7b1b](https://github.com/appium/ruby_lib_core/commit/80c7b1bc5660ce32b939b237c38ffd5ef34d75e3) just return missing methods (#133)
         | 
| 490 | 
            -
            - [a1b7591](https://github.com/appium/ruby_lib_core/commit/a1b7591c4be8bbcea6449e8af33c20cf081b8545) tweak changelog
         | 
| 491 | 
            -
             | 
| 492 | 
            -
             | 
| 493 | 
            -
            #### v1.9.2 2018-08-23
         | 
| 494 | 
            -
             | 
| 495 | 
            -
            - [2c6ac55](https://github.com/appium/ruby_lib_core/commit/2c6ac55a0d351a6801ff2c4b80988adcdd8b44c8) Release 1.9.2
         | 
| 496 | 
            -
            - [cf257ff](https://github.com/appium/ruby_lib_core/commit/cf257ff5559795a100517a5d0775e975fe8aa266) fix unexpected method missing (#132)
         | 
| 497 | 
            -
             | 
| 498 | 
            -
             | 
| 499 | 
            -
            #### v1.9.1 2018-08-20
         | 
| 500 | 
            -
             | 
| 501 | 
            -
            - [7bcc947](https://github.com/appium/ruby_lib_core/commit/7bcc947d93c0617e45e89e94e901bedcbbf21d80) Release 1.9.1
         | 
| 502 | 
            -
            - [221e837](https://github.com/appium/ruby_lib_core/commit/221e8370b1a55b6c15ceb870df5c789175ab4d12) Fix raising error format and remove unnecessary fixme (#131)
         | 
| 503 | 
            -
            - [48d3a59](https://github.com/appium/ruby_lib_core/commit/48d3a59b2c35c1c9fd919ed5332b2a1a1ca452cf) add file management tests (#129)
         | 
| 504 | 
            -
            - [0aa625f](https://github.com/appium/ruby_lib_core/commit/0aa625fad89ffa1d22f87494bf4282082c555a40) fix wrong example
         | 
| 505 | 
            -
            - [f761985](https://github.com/appium/ruby_lib_core/commit/f76198545c020a0b95ad4faf097df1380c96df9a) tweak screenshot tests (#127)
         | 
| 506 | 
            -
            - [6abc03b](https://github.com/appium/ruby_lib_core/commit/6abc03b58ec5b6d5d19228aaeab0bc8d9a85dae1) add simplecov (#126)
         | 
| 507 | 
            -
            - [16681d2](https://github.com/appium/ruby_lib_core/commit/16681d2f82cde25c8491695f710ec28a5d10329f) change to instance style (#125)
         | 
| 508 | 
            -
            - [29abb31](https://github.com/appium/ruby_lib_core/commit/29abb31225b984ed36f1fedf34b694c970d581ce) remove png prefix
         | 
| 509 | 
            -
            - [987526d](https://github.com/appium/ruby_lib_core/commit/987526dfece92317e9aa7a5c26cea2f69bfe0bf0) Add view tag (#124)
         | 
| 510 | 
            -
             | 
| 511 | 
            -
             | 
| 512 | 
            -
            #### v1.9.0 2018-08-05
         | 
| 513 | 
            -
             | 
| 514 | 
            -
            - [cc9e378](https://github.com/appium/ruby_lib_core/commit/cc9e378eba22eb448feec764d6227aff1647aaba) Release 1.9.0
         | 
| 515 | 
            -
            - [7b44bf7](https://github.com/appium/ruby_lib_core/commit/7b44bf70bba97532daabb9b496bbe36618d77593) use default_move_duration (#115)
         | 
| 516 | 
            -
            - [590e798](https://github.com/appium/ruby_lib_core/commit/590e7981f924524ba40b9d918b41af22cf14cc59) Add image strategy (#119)
         | 
| 517 | 
            -
            - [24d2a62](https://github.com/appium/ruby_lib_core/commit/24d2a6265bc351e6e2ca3d410c597ad9b744c072) port send keys for an active element (#122)
         | 
| 518 | 
            -
            - [283059f](https://github.com/appium/ruby_lib_core/commit/283059f971b4a4aeda707de0542c3991accac128) update (#121)
         | 
| 519 | 
            -
            - [c188829](https://github.com/appium/ruby_lib_core/commit/c1888292bb28fead792824d8bb7b3a0df94ee891) gather search contexts (#118)
         | 
| 520 | 
            -
             | 
| 521 | 
            -
             | 
| 522 | 
            -
            #### v1.8.4 2018-07-28
         | 
| 523 | 
            -
             | 
| 524 | 
            -
            - [1775354](https://github.com/appium/ruby_lib_core/commit/1775354f201658243737a0a455fe4123ce2e87a7) Release 1.8.4
         | 
| 525 | 
            -
            - [0770f63](https://github.com/appium/ruby_lib_core/commit/0770f639a59c6662aa8aee30a2b594625873177c) set < 3.14 (#117)
         | 
| 526 | 
            -
            - [443f089](https://github.com/appium/ruby_lib_core/commit/443f08985a44980e6a0e6cfc2886975efe279914) use method missing for getting attributes (#116)
         | 
| 527 | 
            -
            - [cdef904](https://github.com/appium/ruby_lib_core/commit/cdef904201651dee6cec2f5750d37903c7cb26fb) silence warning for pointeractions (#113)
         | 
| 528 | 
            -
             | 
| 529 | 
            -
             | 
| 530 | 
            -
            #### v1.8.3 2018-07-20
         | 
| 531 | 
            -
             | 
| 532 | 
            -
            - [e84eb3a](https://github.com/appium/ruby_lib_core/commit/e84eb3aefef8f5c6973d7fda207bc53e53ceb7ad) Release 1.8.3
         | 
| 533 | 
            -
            - [758f5b1](https://github.com/appium/ruby_lib_core/commit/758f5b1821f73d23adca1523b3b3507625a55d76) fix within context block (#111)
         | 
| 534 | 
            -
            - [c3999f9](https://github.com/appium/ruby_lib_core/commit/c3999f910e1e2fabe8badf558c44b33e56b048d4) use :app without modifications (#110)
         | 
| 535 | 
            -
             | 
| 536 | 
            -
             | 
| 537 | 
            -
            #### v1.8.2 2018-07-17
         | 
| 538 | 
            -
             | 
| 539 | 
            -
            - [4053425](https://github.com/appium/ruby_lib_core/commit/40534256de7b9ace04a6c13f56c4c2abf696c81a) Release 1.8.2
         | 
| 540 | 
            -
            - [3bc3b37](https://github.com/appium/ruby_lib_core/commit/3bc3b370b1f5d38c5e2301279cea96ecc466c485) Remove redundant code (#109)
         | 
| 541 | 
            -
            - [4ee5ddb](https://github.com/appium/ruby_lib_core/commit/4ee5ddb6a3c2037f2a4b60fca12e677b96b1043a) can set packages over http (#108)
         | 
| 542 | 
            -
            - [634d003](https://github.com/appium/ruby_lib_core/commit/634d003bdeeeddfca9422b910c197f0530dc49bb) tweak include (#105)
         | 
| 543 | 
            -
             | 
| 544 | 
            -
             | 
| 545 | 
            -
            #### v1.8.1 2018-07-13
         | 
| 546 | 
            -
             | 
| 547 | 
            -
            - [d423fb4](https://github.com/appium/ruby_lib_core/commit/d423fb419e76fc4eb66845f0b59c15987592cc5f) Release 1.8.1
         | 
| 548 | 
            -
            - [7bf6958](https://github.com/appium/ruby_lib_core/commit/7bf6958af3fbee490731f36a23dba1ef6e0205e6) include ::Appium::Core::Base::SearchContext instead of ::Selenium::WebDriver::SearchContext (#104)
         | 
| 549 | 
            -
             | 
| 550 | 
            -
             | 
| 551 | 
            -
            #### v1.8.0 2018-07-07
         | 
| 552 | 
            -
             | 
| 553 | 
            -
            - [77350e6](https://github.com/appium/ruby_lib_core/commit/77350e6a23b91c84f446e1637a748ff6feb01ded) Release 1.8.0
         | 
| 554 | 
            -
            - [2162056](https://github.com/appium/ruby_lib_core/commit/21620568f14ed4537b43c29e2b28026795e30617) Remove dynamic method definitions (#103)
         | 
| 555 | 
            -
            - [a2e89bf](https://github.com/appium/ruby_lib_core/commit/a2e89bfb9d596e96bd27501a290ad0a2ff3528d4) extract create http client
         | 
| 556 | 
            -
            - [fb9d5e5](https://github.com/appium/ruby_lib_core/commit/fb9d5e5728745bc6a13434d9a7cedb88d08a7b8e) Add tizen (#100)
         | 
| 557 | 
            -
            - [0ecc90b](https://github.com/appium/ruby_lib_core/commit/0ecc90b449a3d841402fe731add8cbe2e530d325) add changelog about find_element/s_by_image
         | 
| 558 | 
            -
            - [a08c7c7](https://github.com/appium/ruby_lib_core/commit/a08c7c769d12316f3a410b28f93799682a111ed8) update docstring for find_elements_by_image
         | 
| 559 | 
            -
             | 
| 560 | 
            -
             | 
| 561 | 
            -
            #### v1.7.2 2018-06-23
         | 
| 562 | 
            -
             | 
| 563 | 
            -
            - [72bbc01](https://github.com/appium/ruby_lib_core/commit/72bbc01dc69579c5b7dea43b6ec01fee37299ebe) Release 1.7.2
         | 
| 564 | 
            -
            - [5438246](https://github.com/appium/ruby_lib_core/commit/54382468e226d38f16d651b7b9f6da952d766d22) Define screenshot methods in this lib (#98)
         | 
| 565 | 
            -
            - [9bd9e11](https://github.com/appium/ruby_lib_core/commit/9bd9e11c20ce37a9e8e0384c09c663913aca0d15) Use bridge for imageelement(#96)
         | 
| 566 | 
            -
            - [7e7fba3](https://github.com/appium/ruby_lib_core/commit/7e7fba32a89ce547e81d68eb6659db464be7a60f) add image element/s (#95)
         | 
| 567 | 
            -
             | 
| 568 | 
            -
             | 
| 569 | 
            -
            #### v1.7.1 2018-06-15
         | 
| 570 | 
            -
             | 
| 571 | 
            -
            - [84febaf](https://github.com/appium/ruby_lib_core/commit/84febaf3a5b4dff0084455556d3ffe1293b64471) Release 1.7.1
         | 
| 572 | 
            -
            - [6d00f73](https://github.com/appium/ruby_lib_core/commit/6d00f739e93954508c34016732907e8629ffaaf5) Update search_context.rb
         | 
| 573 | 
            -
            - [f40cded](https://github.com/appium/ruby_lib_core/commit/f40cdede589bf32abd78ab4e3d8c0240dfad0865) add date format for Android (#94)
         | 
| 574 | 
            -
            - [afc3878](https://github.com/appium/ruby_lib_core/commit/afc3878c39564317cc5f5c3057dd6375ec8772f6) appended docstring for file management (#93)
         | 
| 575 | 
            -
            - [2f53204](https://github.com/appium/ruby_lib_core/commit/2f5320413437c77cef233c7941d3419ab674bd5c) replace name with text
         | 
| 576 | 
            -
             | 
| 577 | 
            -
             | 
| 578 | 
            -
            #### v1.7.0 2018-05-28
         | 
| 579 | 
            -
             | 
| 580 | 
            -
            - [619b964](https://github.com/appium/ruby_lib_core/commit/619b96483dc4bce50295ae831e445053e3d9f1d9) Release 1.7.0
         | 
| 581 | 
            -
            - [e58cd36](https://github.com/appium/ruby_lib_core/commit/e58cd36edb8e819c944c4c8b9c1b186602fc9aa0) Update CHANGELOG.md
         | 
| 582 | 
            -
            - [55527cc](https://github.com/appium/ruby_lib_core/commit/55527cc5135892057aa2921b2ec3a7054a90489a) set default content type (#92)
         | 
| 583 | 
            -
            - [9eff655](https://github.com/appium/ruby_lib_core/commit/9eff6558f321cca26855c9795e76905559c5c54f) Add tests for delegates (#90)
         | 
| 584 | 
            -
            - [9d0b03e](https://github.com/appium/ruby_lib_core/commit/9d0b03e77087a910ebefdadb88d765e126719e91) add ::
         | 
| 585 | 
            -
            - [f225bbc](https://github.com/appium/ruby_lib_core/commit/f225bbc01c271abb1ff88649ea6000b8e0fc8ec6) split one device file into multiple separated files (#89)
         | 
| 586 | 
            -
            - [a306f1a](https://github.com/appium/ruby_lib_core/commit/a306f1a8690d02f21c6392b0c46f6729037088a8) Refactor unit tests (#88)
         | 
| 587 | 
            -
            - [695c17d](https://github.com/appium/ruby_lib_core/commit/695c17d42c5b43b462f70599ae90db7dd3d8b2e0) add flags for key press (#87)
         | 
| 588 | 
            -
             | 
| 589 | 
            -
             | 
| 590 | 
            -
            #### v1.6.0 2018-05-08
         | 
| 591 | 
            -
             | 
| 592 | 
            -
            - [37a35f0](https://github.com/appium/ruby_lib_core/commit/37a35f022d35f43a9770c17e25b8fa3c57737dd6) Release 1.6.0
         | 
| 593 | 
            -
            - [0a5134c](https://github.com/appium/ruby_lib_core/commit/0a5134c80939484301250331bc77b384bc01cf1c) fix an example
         | 
| 594 | 
            -
            - [59a920f](https://github.com/appium/ruby_lib_core/commit/59a920fc6a8e42503f4314f6cfd1242326573559) Add battery info (#85)
         | 
| 595 | 
            -
            - [1e9717f](https://github.com/appium/ruby_lib_core/commit/1e9717fae8231b87c906ade40cea4ca4bebe5262) add is_keyboard_shown for iOS (#86)
         | 
| 596 | 
            -
            - [48ae579](https://github.com/appium/ruby_lib_core/commit/48ae57975dbf17d0d097d49a6b8598ad18cf4c63) Update CHANGELOG.md
         | 
| 597 | 
            -
            - [9ae597c](https://github.com/appium/ruby_lib_core/commit/9ae597c6fdea0abb5f7292bb2c3e02dc859ecb3d) change the response of app_state (#84)
         | 
| 598 | 
            -
             | 
| 599 | 
            -
             | 
| 600 | 
            -
            #### v1.5.1 2018-04-25
         | 
| 601 | 
            -
             | 
| 602 | 
            -
            - [27f6149](https://github.com/appium/ruby_lib_core/commit/27f6149f330137bc1d6350271c246ebe0346122b) Release 1.5.1
         | 
| 603 | 
            -
            - [ddd8624](https://github.com/appium/ruby_lib_core/commit/ddd8624d2c3b9295af086eaf75774f94dbb17b39) Km/fix timeout error (#82)
         | 
| 604 | 
            -
             | 
| 605 | 
            -
             | 
| 606 | 
            -
            #### v1.5.0 2018-04-25
         | 
| 607 | 
            -
             | 
| 608 | 
            -
            - [b37ab24](https://github.com/appium/ruby_lib_core/commit/b37ab249c01a9d9f22a35e8d08e79a6d6b53e3f2) Release 1.5.0
         | 
| 609 | 
            -
            - [0e2df5c](https://github.com/appium/ruby_lib_core/commit/0e2df5ce86d89fdeb9010a8af3b47da9eed3b269) Remove hotfix xcuitest pinch zoom (#81)
         | 
| 610 | 
            -
            - [7209568](https://github.com/appium/ruby_lib_core/commit/7209568040ad94b47aebfac132f47f4be451d112) Update CHANGELOG.md
         | 
| 611 | 
            -
             | 
| 612 | 
            -
             | 
| 613 | 
            -
            #### v1.4.2 2018-04-22
         | 
| 614 | 
            -
             | 
| 615 | 
            -
            - [9a29196](https://github.com/appium/ruby_lib_core/commit/9a29196c1dde66a828b72bef0b3f28b929c7bf1b) Release 1.4.2
         | 
| 616 | 
            -
            - [d51668a](https://github.com/appium/ruby_lib_core/commit/d51668a2f63fa6d8e36e4861002d5c2fd070fc7f) revert delegate_from_appium_driver
         | 
| 617 | 
            -
             | 
| 618 | 
            -
             | 
| 619 | 
            -
            #### v1.4.1 2018-04-22
         | 
| 620 | 
            -
             | 
| 621 | 
            -
            - [afb5d33](https://github.com/appium/ruby_lib_core/commit/afb5d334a786a12bd407848312ddd35c8c9ad308) Release 1.4.1
         | 
| 622 | 
            -
            - [7fd0ccc](https://github.com/appium/ruby_lib_core/commit/7fd0ccca947e742f03ac41022d0670bf809d3969) add base image comparison (#80)
         | 
| 623 | 
            -
            - [0b10980](https://github.com/appium/ruby_lib_core/commit/0b10980cbbb48cfba0352fa0ef4e15b2fd16d086) split timer loop from wait
         | 
| 624 | 
            -
            - [009f679](https://github.com/appium/ruby_lib_core/commit/009f679c08fd4c019b4876454d758ef5cf30daae) Refactor commands (#79)
         | 
| 625 | 
            -
            - [4b1c086](https://github.com/appium/ruby_lib_core/commit/4b1c0868c6258106faae24978be324b79785fc5b) Extract wait (#78)
         | 
| 626 | 
            -
             | 
| 627 | 
            -
             | 
| 628 | 
            -
            #### v1.4.0 2018-04-15
         | 
| 629 | 
            -
             | 
| 630 | 
            -
            - [5cc89aa](https://github.com/appium/ruby_lib_core/commit/5cc89aa4a9533e174527db5b805b96cf2b45a9ac) Release 1.4.0
         | 
| 631 | 
            -
            - [598460c](https://github.com/appium/ruby_lib_core/commit/598460cb9a040ec4d0bd3351bbdb0fb9412428e2) implement websocket client (#74)
         | 
| 632 | 
            -
            - [56a60c6](https://github.com/appium/ruby_lib_core/commit/56a60c6b49b0a36c2e6af34a9d22d828ba38e721) add squash and merge for ontributing.md
         | 
| 633 | 
            -
            - [6fc0a30](https://github.com/appium/ruby_lib_core/commit/6fc0a303073c895494c172a0ec4d196fefed694e) add parallel tests (#73)
         | 
| 634 | 
            -
             | 
| 635 | 
            -
             | 
| 636 | 
            -
            #### v1.3.8 2018-04-13
         | 
| 637 | 
            -
             | 
| 638 | 
            -
            - [f5e1c39](https://github.com/appium/ruby_lib_core/commit/f5e1c39ed07c191c89a491c407d0fc368459367c) Release 1.3.8
         | 
| 639 | 
            -
            - [53c61d4](https://github.com/appium/ruby_lib_core/commit/53c61d46b25e25ba488bb3e065ddec5ee2e6f83c) get ride of auto method generation to enhance ide support (#72)
         | 
| 640 | 
            -
            - [f175c44](https://github.com/appium/ruby_lib_core/commit/f175c4494d2f5edf56402116c016044bfb1603d0) append a comment
         | 
| 641 | 
            -
             | 
| 642 | 
            -
             | 
| 643 | 
            -
            #### v1.3.7 2018-04-02
         | 
| 644 | 
            -
             | 
| 645 | 
            -
            - [e658b98](https://github.com/appium/ruby_lib_core/commit/e658b98c82275b431370cf9d3f8db313f5609bed) Release 1.3.7
         | 
| 646 | 
            -
            - [b55532a](https://github.com/appium/ruby_lib_core/commit/b55532acbacd7865c681cb50495b2d4eae0e4f8c) remove overrided action (#71)
         | 
| 647 | 
            -
             | 
| 648 | 
            -
             | 
| 649 | 
            -
            #### v1.3.6 2018-04-01
         | 
| 650 | 
            -
             | 
| 651 | 
            -
            - [4e54ea5](https://github.com/appium/ruby_lib_core/commit/4e54ea5dbf1bbe02d9e221b29ecf08bd495a4e28) Release 1.3.6
         | 
| 652 | 
            -
            - [a3ba034](https://github.com/appium/ruby_lib_core/commit/a3ba034af075ef998e04d3a3a717c14aaf51c05f) be able to change kind for w3c touch action (#70)
         | 
| 653 | 
            -
             | 
| 654 | 
            -
             | 
| 655 | 
            -
            #### v1.3.5 2018-03-30
         | 
| 656 | 
            -
             | 
| 657 | 
            -
            - [1f10dcb](https://github.com/appium/ruby_lib_core/commit/1f10dcb1448d44fd336317a7d16dd53ee03355f8) Release 1.3.5
         | 
| 658 | 
            -
            - [993840a](https://github.com/appium/ruby_lib_core/commit/993840a698fe302434ef895213998f6b55d0497c) add clipboard api (#69)
         | 
| 659 | 
            -
            - [8ce848c](https://github.com/appium/ruby_lib_core/commit/8ce848c848e3e312fd8af3c4a2733fdc9fc093bc) Add bug report option (#68)
         | 
| 660 | 
            -
             | 
| 661 | 
            -
             | 
| 662 | 
            -
            #### v1.3.4 2018-03-21
         | 
| 663 | 
            -
             | 
| 664 | 
            -
            - [053458e](https://github.com/appium/ruby_lib_core/commit/053458e8c766c2f83c7025251e1aeebb1a2da4d5) Release 1.3.4
         | 
| 665 | 
            -
            - [0987ba3](https://github.com/appium/ruby_lib_core/commit/0987ba361f276c9cdbbf6d400201ec49316a09f6) Fix error initialisation (#67)
         | 
| 666 | 
            -
            - [0064cee](https://github.com/appium/ruby_lib_core/commit/0064cee5a9077858f4903e325471405aefb51fbd) append pid
         | 
| 667 | 
            -
            - [73185aa](https://github.com/appium/ruby_lib_core/commit/73185aa548e4118f19f23f46814dc2ed52f77b53) apply https://github.com/appium/appium-xcuitest-driver/pull/638
         | 
| 668 | 
            -
            - [2b46bcf](https://github.com/appium/ruby_lib_core/commit/2b46bcf168dc6bd4524749beaa9aa5676b65a0cb) add getting performance in core as same as Android (#65)
         | 
| 669 | 
            -
            - [d7335ee](https://github.com/appium/ruby_lib_core/commit/d7335ee5a2c18b8d1a61b125858b825d196c72d1) rename
         | 
| 670 | 
            -
            - [443394d](https://github.com/appium/ruby_lib_core/commit/443394dc0de09929866f70aea983c77b556b924a) add viewportScreen (#63)
         | 
| 671 | 
            -
             | 
| 672 | 
            -
             | 
| 673 | 
            -
            #### v1.3.3 2018-03-03
         | 
| 674 | 
            -
             | 
| 675 | 
            -
            - [bf9a6a3](https://github.com/appium/ruby_lib_core/commit/bf9a6a357f7c318fd3aae489552964e6dc847a8e) Release 1.3.3
         | 
| 676 | 
            -
            - [a7cf0b2](https://github.com/appium/ruby_lib_core/commit/a7cf0b2129d83723c58667e431162997fff42eb0) Add session capabilities w3cmodule (#62)
         | 
| 677 | 
            -
            - [3947064](https://github.com/appium/ruby_lib_core/commit/3947064b831d4dc390cbf8e07cf4f04d68067c87) introduce pry-byebug
         | 
| 678 | 
            -
            - [e919a4e](https://github.com/appium/ruby_lib_core/commit/e919a4ed95e892e082b925e4ab878de33eca0b3d) append some limitations
         | 
| 679 | 
            -
             | 
| 680 | 
            -
             | 
| 681 | 
            -
            #### v1.3.2 2018-02-18
         | 
| 682 | 
            -
             | 
| 683 | 
            -
            - [28e04a7](https://github.com/appium/ruby_lib_core/commit/28e04a743905cfee5b3be1487ffe5f852a387ba4) Release 1.3.2
         | 
| 684 | 
            -
            - [703ec81](https://github.com/appium/ruby_lib_core/commit/703ec81c3add83f9ab0e2b84648bc0db16829bc2) add toggles (#61)
         | 
| 685 | 
            -
            - [1f93d58](https://github.com/appium/ruby_lib_core/commit/1f93d58666caa66f9d13aca9618d6a5d333631e7) Add some emulator commands (#60)
         | 
| 686 | 
            -
             | 
| 687 | 
            -
             | 
| 688 | 
            -
            #### v1.3.1 2018-02-14
         | 
| 689 | 
            -
             | 
| 690 | 
            -
            - [d107749](https://github.com/appium/ruby_lib_core/commit/d107749782e3eae49aeb9c17411a120eecb5a242) Release 1.3.1
         | 
| 691 | 
            -
            - [9dc38d6](https://github.com/appium/ruby_lib_core/commit/9dc38d65a1c0d8975fc67a8274c1d2ebd43e7e5d) remove unused method
         | 
| 692 | 
            -
            - [3ca89ff](https://github.com/appium/ruby_lib_core/commit/3ca89ff6a81e016739f602a1cc60c4a7538ae96a) remove corrdinator for moveTo in swipe (#57)
         | 
| 693 | 
            -
            - [29c528e](https://github.com/appium/ruby_lib_core/commit/29c528e8b407591072a65d4a544af65413a93b9d) arrange consts names and add some options for app management (#59)
         | 
| 694 | 
            -
            - [da7fd55](https://github.com/appium/ruby_lib_core/commit/da7fd55fb7a8330e778fe7295807646e984f262a) Update CHANGELOG.md
         | 
| 695 | 
            -
            - [b1b484d](https://github.com/appium/ruby_lib_core/commit/b1b484ddced5011daedca6c0546d236624511d1a) add terminate, app_state and activate app (#58)
         | 
| 696 | 
            -
            - [0ba7b1c](https://github.com/appium/ruby_lib_core/commit/0ba7b1c726f02e11d6daa46481309b1e0e54b00e) fix documentation
         | 
| 697 | 
            -
             | 
| 698 | 
            -
             | 
| 699 | 
            -
            #### v1.3.0 2018-01-28
         | 
| 700 | 
            -
             | 
| 701 | 
            -
            - [b7a994b](https://github.com/appium/ruby_lib_core/commit/b7a994ba29b3870257cf7e8af602deb147afd791) Release 1.3.0
         | 
| 702 | 
            -
            - [f421cad](https://github.com/appium/ruby_lib_core/commit/f421cad6a1941eb51837a8a2e5b4c403ae2aba42) add error message assertion
         | 
| 703 | 
            -
            - [9864037](https://github.com/appium/ruby_lib_core/commit/9864037619e102decdf5e8f888352eb355193f65) move screen recording command to common (#55)
         | 
| 704 | 
            -
            - [8cffce7](https://github.com/appium/ruby_lib_core/commit/8cffce73ec45443dcc037b9b440de44e946ba13a) Update CHANGELOG.md
         | 
| 705 | 
            -
             | 
| 706 | 
            -
             | 
| 707 | 
            -
            #### v1.2.7 2018-01-25
         | 
| 708 | 
            -
             | 
| 709 | 
            -
            - [02b3845](https://github.com/appium/ruby_lib_core/commit/02b3845a58afb349f62e5d699cfcccee20810665) Release 1.2.7
         | 
| 710 | 
            -
            - [45cf118](https://github.com/appium/ruby_lib_core/commit/45cf1188385339b30773e8e333f4a131b7b2364c) Merge branch 'master' of github.com:appium/ruby_lib_core
         | 
| 711 | 
            -
            - [803cbbb](https://github.com/appium/ruby_lib_core/commit/803cbbb42ccd1cb193d90aa48d4240ada520633f) add downcase strip
         | 
| 712 | 
            -
            - [31561db](https://github.com/appium/ruby_lib_core/commit/31561db31a07bec2cab36bb847fd8489ac9258ce) insert snake case checking (#56)
         | 
| 713 | 
            -
            - [9e0f140](https://github.com/appium/ruby_lib_core/commit/9e0f1409d5ebb841b3daaf41345ae8862ad7dacf) add the date
         | 
| 714 | 
            -
             | 
| 715 | 
            -
             | 
| 716 | 
            -
            #### v1.2.6 2018-01-21
         | 
| 717 | 
            -
             | 
| 718 | 
            -
            - [5bca38e](https://github.com/appium/ruby_lib_core/commit/5bca38e9d11c7596f54c81f7b123a0e5dce59040) Release 1.2.6
         | 
| 719 | 
            -
            - [faa6d3f](https://github.com/appium/ruby_lib_core/commit/faa6d3f92bc4081507f588da55a6c9866ee4e1b9) fix some tests
         | 
| 720 | 
            -
            - [2cb416f](https://github.com/appium/ruby_lib_core/commit/2cb416f1583d1529f5232f716e4a41807069ffe6) add the lock is blocking call
         | 
| 721 | 
            -
            - [6f44596](https://github.com/appium/ruby_lib_core/commit/6f44596c46bba12c151d1c43e73f4453621944aa) add parameters for tests (#54)
         | 
| 722 | 
            -
            - [1d89232](https://github.com/appium/ruby_lib_core/commit/1d89232419ddd484f5231be38d95d9cfdc8efbc2) add lock API doc (#53)
         | 
| 723 | 
            -
            - [087d654](https://github.com/appium/ruby_lib_core/commit/087d65415322f783bf1eb0bf71eb5e196d21a6ba) apply intern (#52)
         | 
| 724 | 
            -
            - [c03f03e](https://github.com/appium/ruby_lib_core/commit/c03f03e0c66cd13fe365df89bce9ce4088eb9b4b) add rect (#51)
         | 
| 725 | 
            -
            - [3c4e9a8](https://github.com/appium/ruby_lib_core/commit/3c4e9a89f351da0588b806248ac22101c2b66a24) add source test
         | 
| 726 | 
            -
             | 
| 727 | 
            -
             | 
| 728 | 
            -
            #### v1.2.5 2018-01-13
         | 
| 729 | 
            -
             | 
| 730 | 
            -
            - [0934b97](https://github.com/appium/ruby_lib_core/commit/0934b977419d6b5359dcc8e5b7c4edcd7f4916f4) Release 1.2.5
         | 
| 731 | 
            -
            - [9497621](https://github.com/appium/ruby_lib_core/commit/9497621a62cdee727614d9c48ffff0f0f2faa7da) ignore extensional prefix (#49)
         | 
| 732 | 
            -
            - [6337c78](https://github.com/appium/ruby_lib_core/commit/6337c7887873c12093ef854dde5a960bbe199449) update readme
         | 
| 733 | 
            -
            - [9cbad5c](https://github.com/appium/ruby_lib_core/commit/9cbad5ca553d513c66508ede5f5f977aeb9f365d) add get timeouts for w3c (#46)
         | 
| 734 | 
            -
            - [dacdc36](https://github.com/appium/ruby_lib_core/commit/dacdc3601cdc8a43b974db52ae164170945cc7ba) remove skip tests from unit tests (#45)
         | 
| 735 | 
            -
            - [2d5c7ae](https://github.com/appium/ruby_lib_core/commit/2d5c7aed33a524d754cc28b5ae46cec917f48318) Fix typo in documentation of Driver#platform_version (#44)
         | 
| 736 | 
            -
            - [d70f244](https://github.com/appium/ruby_lib_core/commit/d70f244ba260fed6c2d522a98d0c5516f3673c47) fix rubocop
         | 
| 737 | 
            -
            - [c6f6528](https://github.com/appium/ruby_lib_core/commit/c6f652817b9d1ad104002d067bfb0452074653aa) add unit tests for forceMjsonwp
         | 
| 738 | 
            -
            - [591a9bd](https://github.com/appium/ruby_lib_core/commit/591a9bd35b72287f10e47bdeae0de9dc2646b44a) add unit tests for w3c case (#43)
         | 
| 739 | 
            -
             | 
| 740 | 
            -
             | 
| 741 | 
            -
            #### v1.2.4 2018-01-03
         | 
| 742 | 
            -
             | 
| 743 | 
            -
            - [7032bc0](https://github.com/appium/ruby_lib_core/commit/7032bc02acc44640542eb545067a4125a7f1811f) Release 1.2.4
         | 
| 744 | 
            -
            - [2396b08](https://github.com/appium/ruby_lib_core/commit/2396b08f99a9630827f6805dde2716b0bd0b14f7) Add some missing commands for w3c (#42)
         | 
| 745 | 
            -
            - [db6aa69](https://github.com/appium/ruby_lib_core/commit/db6aa6954566f601bb038aa7a7aa6884612e19fe) Switchable w3c format caps from capabilities (#41)
         | 
| 746 | 
            -
            - [dac4ff1](https://github.com/appium/ruby_lib_core/commit/dac4ff16271361ceaecf1f613f85cff0bb6c4be2) Add capability for create session following w3c (#40)
         | 
| 747 | 
            -
            - [f2c25ce](https://github.com/appium/ruby_lib_core/commit/f2c25ce9e551790beb4cf6abb170a02a70955eb4) update travis (#39)
         | 
| 748 | 
            -
            - [2ea7908](https://github.com/appium/ruby_lib_core/commit/2ea7908a5e77f4f7275a3e51c1abae7966cf2d94) remove bug fixes part in unreleased
         | 
| 749 | 
            -
             | 
| 750 | 
            -
             | 
| 751 | 
            -
            #### v1.2.3 2017-12-27
         | 
| 752 | 
            -
             | 
| 753 | 
            -
            - [26b8392](https://github.com/appium/ruby_lib_core/commit/26b83923a50257922030c7ccb83e110aff55eee5) Release 1.2.3
         | 
| 754 | 
            -
            - [297bf22](https://github.com/appium/ruby_lib_core/commit/297bf22d7c3b0e96a3ed25f7ea62bb19cf6bd277) add some oss commands to w3c module(#38)
         | 
| 755 | 
            -
             | 
| 756 | 
            -
             | 
| 757 | 
            -
            #### v1.2.2 2017-12-25
         | 
| 758 | 
            -
             | 
| 759 | 
            -
            - [9e7a971](https://github.com/appium/ruby_lib_core/commit/9e7a971ae35aefd471ee07faae8c0f78fb9b0ae2) Release 1.2.2
         | 
| 760 | 
            -
            - [0bd38f5](https://github.com/appium/ruby_lib_core/commit/0bd38f587b7631e8f89ee37cb27083d7e6966714) add some methods for w3c (#37)
         | 
| 761 | 
            -
             | 
| 762 | 
            -
             | 
| 763 | 
            -
            #### v1.2.1 2017-12-23
         | 
| 764 | 
            -
             | 
| 765 | 
            -
            - [93e094e](https://github.com/appium/ruby_lib_core/commit/93e094eeebf200cae7c4b097d674367d3457d542) Release 1.2.1
         | 
| 766 | 
            -
            - [ab5d7c5](https://github.com/appium/ruby_lib_core/commit/ab5d7c5ed31f318a9395e5aeafe1d0d655d3cff4) override default duration to make some action fast (#36)
         | 
| 767 | 
            -
            - [ec2ec43](https://github.com/appium/ruby_lib_core/commit/ec2ec43fa1092321c07f14ced79cc7a5b37db8f8) add documentation
         | 
| 768 | 
            -
             | 
| 769 | 
            -
             | 
| 770 | 
            -
            #### v1.2.0 2017-12-23
         | 
| 771 | 
            -
             | 
| 772 | 
            -
            - [28f937b](https://github.com/appium/ruby_lib_core/commit/28f937bbaf15a7d99b8870b5b1ec1f063414ea3b) Release 1.2.0
         | 
| 773 | 
            -
            - [27c1475](https://github.com/appium/ruby_lib_core/commit/27c1475d4cce8271ddc8409c14fb7bdfa1ff6834) update changelog
         | 
| 774 | 
            -
            - [82e2526](https://github.com/appium/ruby_lib_core/commit/82e2526de95b05e8a49872e0b69835e99acc66e5) add w3c touch action tests and some supports for w3c (#35)
         | 
| 775 | 
            -
            - [415b908](https://github.com/appium/ruby_lib_core/commit/415b90827105e84234e52f5faedde02357083b66) add take element screenshot for oss (#33)
         | 
| 776 | 
            -
            - [9dd9c83](https://github.com/appium/ruby_lib_core/commit/9dd9c83271483727e4429e7e6602480da214e118) add adding appium-prefix for W3C format (#34)
         | 
| 777 | 
            -
            - [cb94184](https://github.com/appium/ruby_lib_core/commit/cb94184854a9977a08f15a44843778314470a73a) update changelog
         | 
| 778 | 
            -
             | 
| 779 | 
            -
             | 
| 780 | 
            -
            #### v1.1.0 2017-12-16
         | 
| 781 | 
            -
             | 
| 782 | 
            -
            - [29b36af](https://github.com/appium/ruby_lib_core/commit/29b36af7af280308f7cfc2ee7ffa1738085e0306) Release 1.1.0
         | 
| 783 | 
            -
            - [f7eefc3](https://github.com/appium/ruby_lib_core/commit/f7eefc376f0d00fb9bc3e8324c652544cb363a9b) fix creating sessions (#31)
         | 
| 784 | 
            -
            - [08c826f](https://github.com/appium/ruby_lib_core/commit/08c826f78ce861e8bd35b7bced54c9bd91d2fabc) for test code: add taking screens if tests failed (#30)
         | 
| 785 | 
            -
            - [f14c924](https://github.com/appium/ruby_lib_core/commit/f14c92435388e16598921685963cc7879eb7ba3a) insert @private
         | 
| 786 | 
            -
            - [5eb125a](https://github.com/appium/ruby_lib_core/commit/5eb125a06e3bc5dfd59a749183d6ff46fd9c5a28) make setting tests robust
         | 
| 787 | 
            -
            - [8bc97ce](https://github.com/appium/ruby_lib_core/commit/8bc97ce1258da79975fc347dc02dfdb14d06a8df) update comments for some commands (#29)
         | 
| 788 | 
            -
            - [7de2e89](https://github.com/appium/ruby_lib_core/commit/7de2e89349c5dce775e91c15e0c8a5486b8cbc5e) Remove duplicated remote status (#28)
         | 
| 789 | 
            -
            - [fcb64b7](https://github.com/appium/ruby_lib_core/commit/fcb64b7992c17d21b82b34cfd714d5dc150ae9a5) add keyevent (#27)
         | 
| 790 | 
            -
            - [a54b315](https://github.com/appium/ruby_lib_core/commit/a54b315155ee68b79d6051046b7f7899d7d0dda9) add some guidelines
         | 
| 791 | 
            -
            - [65d00cb](https://github.com/appium/ruby_lib_core/commit/65d00cb14bfbf6a3bdc3eded05d69037a3c06645) add a rake task for w3c
         | 
| 792 | 
            -
             | 
| 793 | 
            -
             | 
| 794 | 
            -
            #### v1.0.0 2017-11-12
         | 
| 795 | 
            -
             | 
| 796 | 
            -
            - [de176fe](https://github.com/appium/ruby_lib_core/commit/de176fe2fbcfaa341392e7f37ee537158ed2e23e) Release 1.0.0
         | 
| 797 | 
            -
            - [00fb812](https://github.com/appium/ruby_lib_core/commit/00fb812c71696cc2d265fc3921fb9fbffb4b0d62) update changelog
         | 
| 798 | 
            -
            - [30a60ef](https://github.com/appium/ruby_lib_core/commit/30a60ef932e04dbb4e2c0d3619b8f0f36e0b3e26) add script to get diff commands (#9)
         | 
| 799 | 
            -
            - [445cf6a](https://github.com/appium/ruby_lib_core/commit/445cf6ab4c3b5fc7cbdec72a1c4f9ba064c2b08a) update comments for touch actions
         | 
| 800 | 
            -
            - [1629f3a](https://github.com/appium/ruby_lib_core/commit/1629f3af6d6873171babc0d7231ba36a6b5a94fd) define MJSONWP instead of OSS (#8)
         | 
| 801 | 
            -
            - [7b698ca](https://github.com/appium/ruby_lib_core/commit/7b698ca592d96289a8e6ae511e6533ab05ced59c) update readme (#7)
         | 
| 802 | 
            -
            - [feb7f00](https://github.com/appium/ruby_lib_core/commit/feb7f009dad5d70e55f773f5b41467587720e6e3) add context related tests
         | 
| 803 | 
            -
            - [2716285](https://github.com/appium/ruby_lib_core/commit/27162850c13a67a98a51fee432e21d1cb6df449b) add bundle exec for test
         | 
| 804 | 
            -
            - [838c984](https://github.com/appium/ruby_lib_core/commit/838c9843b7342e1b530cbd6bbc92abc6c0ca7fb8) fix rubocop and set the version
         | 
| 805 | 
            -
            - [a633825](https://github.com/appium/ruby_lib_core/commit/a633825fc9171407cde3d65c396a98a8cd961f02) set 2.2
         | 
| 806 | 
            -
            - [4fee2c9](https://github.com/appium/ruby_lib_core/commit/4fee2c97377c4041cad4bfe583c044b42e6dc8d6) update documentation
         | 
| 807 | 
            -
            - [a8b94c0](https://github.com/appium/ruby_lib_core/commit/a8b94c0159943edad0df901813c4a134b027f196) update documentation and comments
         | 
| 808 | 
            -
            - [17bf48a](https://github.com/appium/ruby_lib_core/commit/17bf48af1f4bd33202d12c784fa2a78e63c30813) update driver test
         | 
| 809 | 
            -
            - [7885baf](https://github.com/appium/ruby_lib_core/commit/7885baf4768abeb0d70ebc47174e3f97096a525e) add unit tests for w3c
         | 
| 810 | 
            -
             | 
| 811 | 
            -
             | 
| 812 | 
            -
            #### v0.1.1 2017-11-04
         | 
| 813 | 
            -
             | 
| 814 | 
            -
            - [e5adc6d](https://github.com/appium/ruby_lib_core/commit/e5adc6d8d4a5db312dc7c11c73445d78c6239ec5) Release 0.1.1
         | 
| 815 | 
            -
            - [271ba0d](https://github.com/appium/ruby_lib_core/commit/271ba0d206293968f313178ea8f75f68b29169eb) update readme and gemspec
         | 
| 816 | 
            -
            - [f95b4de](https://github.com/appium/ruby_lib_core/commit/f95b4de01f9ed4bf68646c016da3b1236b0758cc) update readme
         |