appium-mcp 1.8.15 → 1.8.16

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.
Files changed (436) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +2 -1
  3. package/server.json +2 -2
  4. package/src/command.ts +249 -0
  5. package/src/devicemanager/adb-manager.ts +164 -0
  6. package/src/devicemanager/ios-manager.ts +145 -0
  7. package/src/index.ts +45 -0
  8. package/src/locators/element-filter.ts +136 -0
  9. package/src/locators/generate-all-locators.ts +150 -0
  10. package/src/locators/locator-generation.ts +657 -0
  11. package/src/locators/source-parsing.ts +149 -0
  12. package/src/logger.ts +11 -0
  13. package/src/resources/caps.json +697 -0
  14. package/src/resources/index.ts +8 -0
  15. package/src/resources/java/template.ts +83 -0
  16. package/src/resources/submodules/appium/.github/PULL_REQUEST_TEMPLATE.md +28 -0
  17. package/src/resources/submodules/appium/CHANGELOG.md +45 -0
  18. package/src/resources/submodules/appium/CONDUCT.md +48 -0
  19. package/src/resources/submodules/appium/GOVERNANCE.md +185 -0
  20. package/src/resources/submodules/appium/IDEAS.md +16 -0
  21. package/src/resources/submodules/appium/README.md +221 -0
  22. package/src/resources/submodules/appium/ROADMAP.md +30 -0
  23. package/src/resources/submodules/appium/SPONSORS.md +3 -0
  24. package/src/resources/submodules/appium/docs/README.md +6 -0
  25. package/src/resources/submodules/appium/docs/payout.md +35 -0
  26. package/src/resources/submodules/appium/packages/appium/CHANGELOG.md +1437 -0
  27. package/src/resources/submodules/appium/packages/appium/README.md +221 -0
  28. package/src/resources/submodules/appium/packages/appium/docs/en/blog/index.md +2 -0
  29. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-appiumconf2024.md +45 -0
  30. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-browserstack-as-strategic-partner.md +46 -0
  31. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-headspin-as-development-partner.md +47 -0
  32. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-lambdatest-as-strategic-partner.md +42 -0
  33. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-sauce-labs-as-strategic-partner.md +36 -0
  34. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-sponsorship-program.md +48 -0
  35. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/appium3.md +40 -0
  36. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/hello-world.md +15 -0
  37. package/src/resources/submodules/appium/packages/appium/docs/en/contributing/index.md +150 -0
  38. package/src/resources/submodules/appium/packages/appium/docs/en/developing/build-docs.md +86 -0
  39. package/src/resources/submodules/appium/packages/appium/docs/en/developing/build-doctor-checks.md +141 -0
  40. package/src/resources/submodules/appium/packages/appium/docs/en/developing/build-drivers.md +860 -0
  41. package/src/resources/submodules/appium/packages/appium/docs/en/developing/build-plugins.md +514 -0
  42. package/src/resources/submodules/appium/packages/appium/docs/en/developing/config-system.md +451 -0
  43. package/src/resources/submodules/appium/packages/appium/docs/en/developing/index.md +18 -0
  44. package/src/resources/submodules/appium/packages/appium/docs/en/developing/sensitive.md +49 -0
  45. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/clients.md +132 -0
  46. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/drivers.md +207 -0
  47. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/index.md +45 -0
  48. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/plugins.md +138 -0
  49. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/tools.md +83 -0
  50. package/src/resources/submodules/appium/packages/appium/docs/en/guides/branch-testing.md +57 -0
  51. package/src/resources/submodules/appium/packages/appium/docs/en/guides/caching.md +76 -0
  52. package/src/resources/submodules/appium/packages/appium/docs/en/guides/caps.md +275 -0
  53. package/src/resources/submodules/appium/packages/appium/docs/en/guides/config.md +98 -0
  54. package/src/resources/submodules/appium/packages/appium/docs/en/guides/context.md +44 -0
  55. package/src/resources/submodules/appium/packages/appium/docs/en/guides/event-timing.md +73 -0
  56. package/src/resources/submodules/appium/packages/appium/docs/en/guides/execute-methods.md +122 -0
  57. package/src/resources/submodules/appium/packages/appium/docs/en/guides/grid.md +166 -0
  58. package/src/resources/submodules/appium/packages/appium/docs/en/guides/headers.md +17 -0
  59. package/src/resources/submodules/appium/packages/appium/docs/en/guides/log-filters.md +86 -0
  60. package/src/resources/submodules/appium/packages/appium/docs/en/guides/managing-exts.md +87 -0
  61. package/src/resources/submodules/appium/packages/appium/docs/en/guides/migrating-1-to-2.md +368 -0
  62. package/src/resources/submodules/appium/packages/appium/docs/en/guides/migrating-2-to-3.md +464 -0
  63. package/src/resources/submodules/appium/packages/appium/docs/en/guides/security.md +89 -0
  64. package/src/resources/submodules/appium/packages/appium/docs/en/guides/settings.md +68 -0
  65. package/src/resources/submodules/appium/packages/appium/docs/en/guides/tls.md +42 -0
  66. package/src/resources/submodules/appium/packages/appium/docs/en/index.md +59 -0
  67. package/src/resources/submodules/appium/packages/appium/docs/en/intro/appium.md +202 -0
  68. package/src/resources/submodules/appium/packages/appium/docs/en/intro/clients.md +127 -0
  69. package/src/resources/submodules/appium/packages/appium/docs/en/intro/drivers.md +188 -0
  70. package/src/resources/submodules/appium/packages/appium/docs/en/intro/history.md +196 -0
  71. package/src/resources/submodules/appium/packages/appium/docs/en/intro/index.md +39 -0
  72. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/index.md +29 -0
  73. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/install.md +50 -0
  74. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/next-steps.md +23 -0
  75. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/requirements.md +29 -0
  76. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-dotnet.md +105 -0
  77. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-java.md +23 -0
  78. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-js.md +75 -0
  79. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-py.md +60 -0
  80. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-rb.md +83 -0
  81. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/uiauto2-driver.md +144 -0
  82. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/appium.md +394 -0
  83. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/bidi.md +70 -0
  84. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/index.md +30 -0
  85. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/jsonwp.md +214 -0
  86. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/mjsonwp.md +151 -0
  87. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/others.md +671 -0
  88. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/plugins.md +289 -0
  89. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/webdriver.md +1114 -0
  90. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/env-vars.md +31 -0
  91. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/extensions.md +239 -0
  92. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/index.md +35 -0
  93. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/server.md +76 -0
  94. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/setup.md +76 -0
  95. package/src/resources/submodules/appium/packages/appium/docs/en/reference/index.md +25 -0
  96. package/src/resources/submodules/appium/packages/appium/docs/en/resources/index.md +28 -0
  97. package/src/resources/submodules/appium/packages/appium/docs/en/sponsors/index.md +64 -0
  98. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/index.md +2 -0
  99. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-appiumconf2024.md +45 -0
  100. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-browserstack-as-strategic-partner.md +46 -0
  101. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-headspin-as-development-partner.md +47 -0
  102. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-lambdatest-as-strategic-partner.md +41 -0
  103. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-sauce-labs-as-strategic-partner.md +36 -0
  104. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-sponsorship-program.md +48 -0
  105. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/appium3.md +40 -0
  106. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/hello-world.md +15 -0
  107. package/src/resources/submodules/appium/packages/appium/docs/ja/contributing/index.md +158 -0
  108. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/build-docs.md +86 -0
  109. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/build-doctor-checks.md +141 -0
  110. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/build-drivers.md +866 -0
  111. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/build-plugins.md +520 -0
  112. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/config-system.md +468 -0
  113. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/index.md +18 -0
  114. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/sensitive.md +49 -0
  115. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/clients.md +143 -0
  116. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/drivers.md +219 -0
  117. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/index.md +45 -0
  118. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/plugins.md +140 -0
  119. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/tools.md +87 -0
  120. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/branch-testing.md +57 -0
  121. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/caching.md +78 -0
  122. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/caps.md +259 -0
  123. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/config.md +102 -0
  124. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/context.md +44 -0
  125. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/event-timing.md +75 -0
  126. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/execute-methods.md +142 -0
  127. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/grid.md +166 -0
  128. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/headers.md +17 -0
  129. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/log-filters.md +86 -0
  130. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/managing-exts.md +89 -0
  131. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/migrating-1-to-2.md +402 -0
  132. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/migrating-2-to-3.md +458 -0
  133. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/security.md +89 -0
  134. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/settings.md +70 -0
  135. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/tls.md +43 -0
  136. package/src/resources/submodules/appium/packages/appium/docs/ja/index.md +55 -0
  137. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/appium.md +191 -0
  138. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/clients.md +139 -0
  139. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/drivers.md +188 -0
  140. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/history.md +196 -0
  141. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/index.md +39 -0
  142. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/index.md +23 -0
  143. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/install.md +47 -0
  144. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/next-steps.md +19 -0
  145. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/requirements.md +29 -0
  146. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-dotnet.md +107 -0
  147. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-java.md +23 -0
  148. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-js.md +77 -0
  149. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-py.md +63 -0
  150. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-rb.md +85 -0
  151. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/uiauto2-driver.md +148 -0
  152. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/appium.md +395 -0
  153. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/bidi.md +71 -0
  154. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/index.md +30 -0
  155. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/jsonwp.md +215 -0
  156. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/mjsonwp.md +152 -0
  157. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/others.md +672 -0
  158. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/plugins.md +291 -0
  159. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/webdriver.md +1114 -0
  160. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/env-vars.md +31 -0
  161. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/extensions.md +240 -0
  162. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/index.md +35 -0
  163. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/server.md +76 -0
  164. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/setup.md +78 -0
  165. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/index.md +25 -0
  166. package/src/resources/submodules/appium/packages/appium/docs/ja/resources/index.md +28 -0
  167. package/src/resources/submodules/appium/packages/appium/docs/ja/sponsors/index.md +61 -0
  168. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/appium-logo-horiz-white.png +0 -0
  169. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/appium-logo-horiz.png +0 -0
  170. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/appium-logo-white.png +0 -0
  171. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/appium-logo.png +0 -0
  172. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-browserstack-dark.png +0 -0
  173. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-browserstack-light.png +0 -0
  174. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-lambdatest-dark.png +0 -0
  175. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-lambdatest-light.png +0 -0
  176. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-sauce.png +0 -0
  177. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/index.md +2 -0
  178. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-appiumconf2024.md +45 -0
  179. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-browserstack-as-strategic-partner.md +46 -0
  180. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-headspin-as-development-partner.md +47 -0
  181. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-lambdatest-as-strategic-partner.md +41 -0
  182. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-sauce-labs-as-strategic-partner.md +36 -0
  183. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-sponsorship-program.md +48 -0
  184. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/appium3.md +40 -0
  185. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/hello-world.md +15 -0
  186. package/src/resources/submodules/appium/packages/appium/docs/zh/contributing/index.md +132 -0
  187. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/build-docs.md +86 -0
  188. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/build-doctor-checks.md +141 -0
  189. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/build-drivers.md +866 -0
  190. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/build-plugins.md +520 -0
  191. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/config-system.md +468 -0
  192. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/index.md +18 -0
  193. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/sensitive.md +49 -0
  194. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/clients.md +143 -0
  195. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/drivers.md +219 -0
  196. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/index.md +45 -0
  197. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/plugins.md +140 -0
  198. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/tools.md +87 -0
  199. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/branch-testing.md +57 -0
  200. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/caching.md +78 -0
  201. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/caps.md +284 -0
  202. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/config.md +102 -0
  203. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/context.md +44 -0
  204. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/event-timing.md +75 -0
  205. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/execute-methods.md +142 -0
  206. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/grid.md +166 -0
  207. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/headers.md +17 -0
  208. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/log-filters.md +86 -0
  209. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/managing-exts.md +89 -0
  210. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/migrating-1-to-2.md +410 -0
  211. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/migrating-2-to-3.md +459 -0
  212. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/security.md +89 -0
  213. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/settings.md +70 -0
  214. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/tls.md +43 -0
  215. package/src/resources/submodules/appium/packages/appium/docs/zh/index.md +54 -0
  216. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/appium.md +200 -0
  217. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/clients.md +139 -0
  218. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/drivers.md +188 -0
  219. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/history.md +196 -0
  220. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/index.md +39 -0
  221. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/index.md +23 -0
  222. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/install.md +47 -0
  223. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/next-steps.md +19 -0
  224. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/requirements.md +21 -0
  225. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-dotnet.md +99 -0
  226. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-java.md +20 -0
  227. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-js.md +62 -0
  228. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-py.md +57 -0
  229. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-rb.md +80 -0
  230. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/uiauto2-driver.md +148 -0
  231. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/appium.md +395 -0
  232. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/bidi.md +71 -0
  233. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/index.md +30 -0
  234. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/jsonwp.md +215 -0
  235. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/mjsonwp.md +152 -0
  236. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/others.md +672 -0
  237. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/plugins.md +291 -0
  238. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/webdriver.md +1114 -0
  239. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/env-vars.md +31 -0
  240. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/extensions.md +240 -0
  241. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/index.md +35 -0
  242. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/server.md +76 -0
  243. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/setup.md +78 -0
  244. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/index.md +25 -0
  245. package/src/resources/submodules/appium/packages/appium/docs/zh/resources/index.md +28 -0
  246. package/src/resources/submodules/appium/packages/appium/docs/zh/sponsors/index.md +61 -0
  247. package/src/resources/submodules/appium/packages/appium/types/manifest/README.md +30 -0
  248. package/src/resources/submodules/appium/packages/base-driver/CHANGELOG.md +1131 -0
  249. package/src/resources/submodules/appium/packages/base-driver/README.md +15 -0
  250. package/src/resources/submodules/appium/packages/base-driver/docs/mjsonwp/errors.md +82 -0
  251. package/src/resources/submodules/appium/packages/base-driver/docs/mjsonwp/protocol-methods.md +182 -0
  252. package/src/resources/submodules/appium/packages/base-driver/static/appium.png +0 -0
  253. package/src/resources/submodules/appium/packages/base-plugin/CHANGELOG.md +672 -0
  254. package/src/resources/submodules/appium/packages/base-plugin/README.md +15 -0
  255. package/src/resources/submodules/appium/packages/docutils/CHANGELOG.md +948 -0
  256. package/src/resources/submodules/appium/packages/docutils/README.md +27 -0
  257. package/src/resources/submodules/appium/packages/driver-test-support/CHANGELOG.md +717 -0
  258. package/src/resources/submodules/appium/packages/driver-test-support/README.md +112 -0
  259. package/src/resources/submodules/appium/packages/eslint-config-appium-ts/CHANGELOG.md +168 -0
  260. package/src/resources/submodules/appium/packages/eslint-config-appium-ts/README.md +33 -0
  261. package/src/resources/submodules/appium/packages/execute-driver-plugin/CHANGELOG.md +603 -0
  262. package/src/resources/submodules/appium/packages/execute-driver-plugin/README.md +42 -0
  263. package/src/resources/submodules/appium/packages/fake-driver/CHANGELOG.md +545 -0
  264. package/src/resources/submodules/appium/packages/fake-driver/README.md +7 -0
  265. package/src/resources/submodules/appium/packages/fake-driver/lib/screen.png +0 -0
  266. package/src/resources/submodules/appium/packages/fake-plugin/CHANGELOG.md +683 -0
  267. package/src/resources/submodules/appium/packages/fake-plugin/README.md +7 -0
  268. package/src/resources/submodules/appium/packages/images-plugin/CHANGELOG.md +602 -0
  269. package/src/resources/submodules/appium/packages/images-plugin/README.md +27 -0
  270. package/src/resources/submodules/appium/packages/images-plugin/docs/find-by-image.md +65 -0
  271. package/src/resources/submodules/appium/packages/images-plugin/docs/image-comparison.md +203 -0
  272. package/src/resources/submodules/appium/packages/images-plugin/test/fixtures/appstore.png +0 -0
  273. package/src/resources/submodules/appium/packages/images-plugin/test/fixtures/img1.png +0 -0
  274. package/src/resources/submodules/appium/packages/images-plugin/test/fixtures/img2.png +0 -0
  275. package/src/resources/submodules/appium/packages/images-plugin/test/fixtures/img2_part.png +0 -0
  276. package/src/resources/submodules/appium/packages/logger/CHANGELOG.md +162 -0
  277. package/src/resources/submodules/appium/packages/logger/README.md +31 -0
  278. package/src/resources/submodules/appium/packages/opencv/CHANGELOG.md +384 -0
  279. package/src/resources/submodules/appium/packages/opencv/README.md +68 -0
  280. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/appium-diagram.jpg +0 -0
  281. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/cc1.png +0 -0
  282. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/cc2.png +0 -0
  283. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/cc_rotated.png +0 -0
  284. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/findwaldo.jpg +0 -0
  285. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/number5.png +0 -0
  286. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/waldo.jpg +0 -0
  287. package/src/resources/submodules/appium/packages/plugin-test-support/CHANGELOG.md +539 -0
  288. package/src/resources/submodules/appium/packages/plugin-test-support/README.md +49 -0
  289. package/src/resources/submodules/appium/packages/relaxed-caps-plugin/CHANGELOG.md +154 -0
  290. package/src/resources/submodules/appium/packages/relaxed-caps-plugin/README.md +35 -0
  291. package/src/resources/submodules/appium/packages/schema/CHANGELOG.md +271 -0
  292. package/src/resources/submodules/appium/packages/schema/README.md +50 -0
  293. package/src/resources/submodules/appium/packages/storage-plugin/CHANGELOG.md +73 -0
  294. package/src/resources/submodules/appium/packages/storage-plugin/README.md +83 -0
  295. package/src/resources/submodules/appium/packages/strongbox/CHANGELOG.md +94 -0
  296. package/src/resources/submodules/appium/packages/strongbox/README.md +96 -0
  297. package/src/resources/submodules/appium/packages/support/CHANGELOG.md +1054 -0
  298. package/src/resources/submodules/appium/packages/support/README.md +161 -0
  299. package/src/resources/submodules/appium/packages/test-support/CHANGELOG.md +712 -0
  300. package/src/resources/submodules/appium/packages/test-support/README.md +61 -0
  301. package/src/resources/submodules/appium/packages/tsconfig/CHANGELOG.md +131 -0
  302. package/src/resources/submodules/appium/packages/tsconfig/README.md +19 -0
  303. package/src/resources/submodules/appium/packages/types/CHANGELOG.md +793 -0
  304. package/src/resources/submodules/appium/packages/types/README.md +21 -0
  305. package/src/resources/submodules/appium/packages/universal-xml-plugin/CHANGELOG.md +435 -0
  306. package/src/resources/submodules/appium/packages/universal-xml-plugin/README.md +53 -0
  307. package/src/resources/submodules/appium/renovate/README.md +63 -0
  308. package/src/resources/submodules/appium-uiautomator2-driver/CHANGELOG.md +1204 -0
  309. package/src/resources/submodules/appium-uiautomator2-driver/README.md +2077 -0
  310. package/src/resources/submodules/appium-uiautomator2-driver/docs/actions.md +72 -0
  311. package/src/resources/submodules/appium-uiautomator2-driver/docs/activity-startup.md +47 -0
  312. package/src/resources/submodules/appium-uiautomator2-driver/docs/android-appbundle.md +69 -0
  313. package/src/resources/submodules/appium-uiautomator2-driver/docs/android-mobile-gestures.md +352 -0
  314. package/src/resources/submodules/appium-uiautomator2-driver/docs/bidi.md +50 -0
  315. package/src/resources/submodules/appium-uiautomator2-driver/docs/capability-sets.md +136 -0
  316. package/src/resources/submodules/appium-uiautomator2-driver/docs/scheduled-actions.md +155 -0
  317. package/src/resources/submodules/appium-uiautomator2-driver/docs/uiautomator-uiselector.md +51 -0
  318. package/src/resources/submodules/appium-uiautomator2-driver/docs/unlock/main.md +95 -0
  319. package/src/resources/submodules/appium-uiautomator2-driver/docs/unlock/screen1.png +0 -0
  320. package/src/resources/submodules/appium-uiautomator2-driver/docs/unlock/screen2.png +0 -0
  321. package/src/resources/submodules/appium-uiautomator2-driver/test/functional/assets/checkered-squares.png +0 -0
  322. package/src/resources/submodules/appium-uiautomator2-driver/test/functional/assets/start-button.png +0 -0
  323. package/src/resources/submodules/appium-uiautomator2-driver/test/functional/assets/stop-button.png +0 -0
  324. package/src/resources/submodules/appium-xcuitest-driver/.github/ISSUE_TEMPLATE.md +4 -0
  325. package/src/resources/submodules/appium-xcuitest-driver/CHANGELOG.md +2594 -0
  326. package/src/resources/submodules/appium-xcuitest-driver/README.md +55 -0
  327. package/src/resources/submodules/appium-xcuitest-driver/docs/assets/images/appium-logo-white.png +0 -0
  328. package/src/resources/submodules/appium-xcuitest-driver/docs/assets/images/appium-logo.png +0 -0
  329. package/src/resources/submodules/appium-xcuitest-driver/docs/assets/images/appium-plus-xctest.png +0 -0
  330. package/src/resources/submodules/appium-xcuitest-driver/docs/contributing.md +45 -0
  331. package/src/resources/submodules/appium-xcuitest-driver/docs/endpoints-wda.md +61 -0
  332. package/src/resources/submodules/appium-xcuitest-driver/docs/endpoints.md +98 -0
  333. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/assets/images/ios-xctest-file-movement/keynote.png +0 -0
  334. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/assets/images/ios-xctest-file-movement/on_my_iphone.png +0 -0
  335. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/assets/images/ios-xctest-file-movement/top_files.png +0 -0
  336. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/attach-to-running-wda.md +43 -0
  337. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/audio-capture.md +78 -0
  338. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/capability-sets.md +169 -0
  339. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/ci-setup.md +47 -0
  340. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/clipboard.md +47 -0
  341. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/elements-lookup-troubleshooting.md +158 -0
  342. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/file-transfer.md +147 -0
  343. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/gestures.md +52 -0
  344. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/hybrid.md +137 -0
  345. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/input-events.md +67 -0
  346. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/install-certificate.md +19 -0
  347. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/multiple-xcode-versions.md +37 -0
  348. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/parallel-tests.md +39 -0
  349. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/run-prebuilt-wda.md +135 -0
  350. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/run-preinstalled-wda.md +178 -0
  351. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/touch-id.md +33 -0
  352. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/troubleshooting.md +191 -0
  353. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/tvos.md +114 -0
  354. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/wda-custom-server.md +283 -0
  355. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/wda-slowness.md +231 -0
  356. package/src/resources/submodules/appium-xcuitest-driver/docs/index.md +36 -0
  357. package/src/resources/submodules/appium-xcuitest-driver/docs/installation/index.md +137 -0
  358. package/src/resources/submodules/appium-xcuitest-driver/docs/overview.md +19 -0
  359. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/check-prov-prof.png +0 -0
  360. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/create-new-project.png +0 -0
  361. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/create-single-page.png +0 -0
  362. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/no-prov-prof.png +0 -0
  363. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/project-prov-prof.png +0 -0
  364. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/set-up-bundle.png +0 -0
  365. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/untrusted-dev.png +0 -0
  366. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/xcode-bundle-id.png +0 -0
  367. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/xcode-config.png +0 -0
  368. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/xcode-facebook-fail.png +0 -0
  369. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/assets/images/xcode-facebook-succeed.png +0 -0
  370. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/index.md +51 -0
  371. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/prov-profile-basic-auto.md +49 -0
  372. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/prov-profile-basic-manual.md +40 -0
  373. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/prov-profile-full-manual.md +50 -0
  374. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/prov-profile-generic-manual.md +49 -0
  375. package/src/resources/submodules/appium-xcuitest-driver/docs/preparation/real-device-config.md +100 -0
  376. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/assets/images/useXctestrunFile.png +0 -0
  377. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/bidi.md +75 -0
  378. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/capabilities.md +165 -0
  379. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/commands.md +490 -0
  380. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/element-attributes.md +27 -0
  381. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/execute-methods.md +2206 -0
  382. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/ios-predicate.md +196 -0
  383. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/locator-strategies.md +19 -0
  384. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/scripts.md +29 -0
  385. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/security-flags.md +22 -0
  386. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/server-args.md +16 -0
  387. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/settings.md +49 -0
  388. package/src/resources/submodules/appium-xcuitest-driver/test/assets/TestApp-iphonesimulator.app/Default-568h@2x.png +0 -0
  389. package/src/resources/submodules/appium-xcuitest-driver/test/assets/test.png +0 -0
  390. package/src/schema.ts +5 -0
  391. package/src/scripts/simple-index-documentation.ts +93 -0
  392. package/src/scripts/simple-query-documentation.ts +61 -0
  393. package/src/server.ts +40 -0
  394. package/src/session-store.ts +151 -0
  395. package/src/tests/README.md +83 -0
  396. package/src/tests/__mocks__/@appium/support.ts +30 -0
  397. package/src/tests/generate-all-locators.test.ts +178 -0
  398. package/src/tests/screenshot.test.ts +279 -0
  399. package/src/tests/test-setup-wda.ts +255 -0
  400. package/src/tools/README.md +179 -0
  401. package/src/tools/app-management/activate-app.ts +47 -0
  402. package/src/tools/app-management/install-app.ts +46 -0
  403. package/src/tools/app-management/list-apps.ts +87 -0
  404. package/src/tools/app-management/terminate-app.ts +48 -0
  405. package/src/tools/app-management/uninstall-app.ts +48 -0
  406. package/src/tools/context/get-contexts.ts +87 -0
  407. package/src/tools/context/switch-context.ts +101 -0
  408. package/src/tools/documentation/answer-appium.ts +73 -0
  409. package/src/tools/documentation/index.ts +98 -0
  410. package/src/tools/documentation/reasoning-rag.ts +435 -0
  411. package/src/tools/documentation/sentence-transformers-embeddings.ts +144 -0
  412. package/src/tools/documentation/simple-pdf-indexer.ts +508 -0
  413. package/src/tools/documentation/uploads/documents.json +1 -0
  414. package/src/tools/index.ts +159 -0
  415. package/src/tools/interactions/click.ts +48 -0
  416. package/src/tools/interactions/double-tap.ts +96 -0
  417. package/src/tools/interactions/drag-and-drop.ts +236 -0
  418. package/src/tools/interactions/find.ts +58 -0
  419. package/src/tools/interactions/get-page-source.ts +65 -0
  420. package/src/tools/interactions/get-text.ts +48 -0
  421. package/src/tools/interactions/long-press.ts +111 -0
  422. package/src/tools/interactions/screenshot.ts +116 -0
  423. package/src/tools/interactions/set-value.ts +49 -0
  424. package/src/tools/ios/boot-simulator.ts +88 -0
  425. package/src/tools/ios/install-wda.ts +277 -0
  426. package/src/tools/ios/setup-wda.ts +217 -0
  427. package/src/tools/navigations/scroll-to-element.ts +198 -0
  428. package/src/tools/navigations/scroll.ts +101 -0
  429. package/src/tools/navigations/swipe.ts +364 -0
  430. package/src/tools/session/create-session.ts +379 -0
  431. package/src/tools/session/delete-session.ts +56 -0
  432. package/src/tools/session/select-device.ts +326 -0
  433. package/src/tools/session/select-platform.ts +250 -0
  434. package/src/tools/test-generation/generate-tests.ts +48 -0
  435. package/src/tools/test-generation/locators.ts +103 -0
  436. package/src/ui/mcp-ui-utils.ts +1630 -0
@@ -0,0 +1,1204 @@
1
+ ## [6.1.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.0.2...v6.1.0) (2025-10-30)
2
+
3
+ ### Features
4
+
5
+ * Document the chromedriverForwardBiDi capability ([#934](https://github.com/appium/appium-uiautomator2-driver/issues/934)) ([83db68c](https://github.com/appium/appium-uiautomator2-driver/commit/83db68c1916b75e707591b15654da507fe6e0a03))
6
+
7
+ ## [6.0.2](https://github.com/appium/appium-uiautomator2-driver/compare/v6.0.1...v6.0.2) (2025-10-28)
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * bump io.appium.settings to 7.0.1 basis ([#932](https://github.com/appium/appium-uiautomator2-driver/issues/932)) ([9a11765](https://github.com/appium/appium-uiautomator2-driver/commit/9a11765f89c9897cd6ae119623c61582770d3ea6))
12
+
13
+ ## [6.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.0.0...v6.0.1) (2025-10-28)
14
+
15
+ ### Miscellaneous Chores
16
+
17
+ * **deps:** bump io.appium.settings from 6.0.8 to 7.0.0 and appium-android-driver to 12 ([#931](https://github.com/appium/appium-uiautomator2-driver/issues/931)) ([01a7b6a](https://github.com/appium/appium-uiautomator2-driver/commit/01a7b6a5cae92f9a72f5c79ae1adba2aee528cb2))
18
+
19
+ ## [6.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.7...v6.0.0) (2025-10-24)
20
+
21
+ ### ⚠ BREAKING CHANGES
22
+
23
+ * Dropped support of older Android API levels below 26 (Oreo)
24
+
25
+ ### Features
26
+
27
+ * Bump server version ([#929](https://github.com/appium/appium-uiautomator2-driver/issues/929)) ([d459273](https://github.com/appium/appium-uiautomator2-driver/commit/d459273422c336ad933f26699fac679f488d24e8))
28
+
29
+ ## [5.0.7](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.6...v5.0.7) (2025-10-24)
30
+
31
+ ### Miscellaneous Chores
32
+
33
+ * Bump various dependencies ([#928](https://github.com/appium/appium-uiautomator2-driver/issues/928)) ([435c838](https://github.com/appium/appium-uiautomator2-driver/commit/435c838e7b2b58819b46054ca67054f06a0cf44f))
34
+
35
+ ## [5.0.6](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.5...v5.0.6) (2025-10-22)
36
+
37
+ ### Miscellaneous Chores
38
+
39
+ * Bump android driver ([7730ccb](https://github.com/appium/appium-uiautomator2-driver/commit/7730ccb9970260bc217b8d1f10e1ee9e818e6941))
40
+
41
+ ## [5.0.5](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.4...v5.0.5) (2025-10-08)
42
+
43
+ ### Miscellaneous Chores
44
+
45
+ * Bump android driver ([885b8b6](https://github.com/appium/appium-uiautomator2-driver/commit/885b8b6191863a4536a511efc662a36486614a76))
46
+
47
+ ## [5.0.4](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.3...v5.0.4) (2025-10-03)
48
+
49
+ ### Miscellaneous Chores
50
+
51
+ * Bump dependencies ([5444a24](https://github.com/appium/appium-uiautomator2-driver/commit/5444a2421c1f462d6ce03fb1738432250fb0d2d0))
52
+
53
+ ## [5.0.3](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.2...v5.0.3) (2025-09-17)
54
+
55
+ ### Miscellaneous Chores
56
+
57
+ * Bump server version ([db099b5](https://github.com/appium/appium-uiautomator2-driver/commit/db099b5767c1b4340642c7ca6e90293006d39df7))
58
+
59
+ ## [5.0.2](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.1...v5.0.2) (2025-09-16)
60
+
61
+ ### Miscellaneous Chores
62
+
63
+ * bump appium-android-driver to 11.0.4 ([#921](https://github.com/appium/appium-uiautomator2-driver/issues/921)) ([0079706](https://github.com/appium/appium-uiautomator2-driver/commit/007970682b7db125397c7369e6203a4048180d8c))
64
+
65
+ ## [5.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.0...v5.0.1) (2025-09-11)
66
+
67
+ ### Bug Fixes
68
+
69
+ * Build ([3168daa](https://github.com/appium/appium-uiautomator2-driver/commit/3168daacbd94078e608a3eeafb4b864748a308fa))
70
+ * Missing await ([9d81a48](https://github.com/appium/appium-uiautomator2-driver/commit/9d81a4874ad19de85abdcc67cc6556d672442d7a))
71
+
72
+ ### Miscellaneous Chores
73
+
74
+ * Update android driver ([b4d5f19](https://github.com/appium/appium-uiautomator2-driver/commit/b4d5f19560c3d51d7215f96f6d0b8863c1d82e93))
75
+
76
+ ## [5.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.9...v5.0.0) (2025-08-19)
77
+
78
+ ### ⚠ BREAKING CHANGES
79
+
80
+ * Required Node.js version has been bumped to ^20.19.0 || ^22.12.0 || >=24.0.0
81
+ * Required npm version has been bumped to >=10
82
+ * Required Appium server version has been bumped to >=3.0.0-rc.2
83
+
84
+ ### Features
85
+
86
+ * Update server compatibility for appium 3 ([#915](https://github.com/appium/appium-uiautomator2-driver/issues/915)) ([fab8535](https://github.com/appium/appium-uiautomator2-driver/commit/fab8535bde0b1904cfa44afbe08e2d9a61560f55))
87
+
88
+ ## [4.2.9](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.8...v4.2.9) (2025-08-17)
89
+
90
+ ### Miscellaneous Chores
91
+
92
+ * remove no reference dev deps rimraf ([#914](https://github.com/appium/appium-uiautomator2-driver/issues/914)) ([f19349f](https://github.com/appium/appium-uiautomator2-driver/commit/f19349fb5a7ee9b1e131a5aa52a40e5ab9ded190))
93
+
94
+ ## [4.2.8](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.7...v4.2.8) (2025-08-06)
95
+
96
+ ### Miscellaneous Chores
97
+
98
+ * bump appium-android-driver to 10.3.11 ([#913](https://github.com/appium/appium-uiautomator2-driver/issues/913)) ([88d6cab](https://github.com/appium/appium-uiautomator2-driver/commit/88d6cab34eb1927787236b8e6d3b8114d6412a0d))
99
+
100
+ ## [4.2.7](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.6...v4.2.7) (2025-07-23)
101
+
102
+ ### Miscellaneous Chores
103
+
104
+ * docs for tooltip-text and text-has-clickable-span fields ([#912](https://github.com/appium/appium-uiautomator2-driver/issues/912)) ([fa77432](https://github.com/appium/appium-uiautomator2-driver/commit/fa7743205cb22f7144a12fd0ce5f76064819aa7d))
105
+
106
+ ## [4.2.6](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.5...v4.2.6) (2025-07-20)
107
+
108
+ ### Bug Fixes
109
+
110
+ * do not proxy commands for retrieving session data ([#911](https://github.com/appium/appium-uiautomator2-driver/issues/911)) ([3f86b10](https://github.com/appium/appium-uiautomator2-driver/commit/3f86b103a60fc3ff471bdd7e0f5c94711891aa21))
111
+
112
+ ## [4.2.5](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.4...v4.2.5) (2025-07-06)
113
+
114
+ ### Miscellaneous Chores
115
+
116
+ * Bump android driver ([01fe469](https://github.com/appium/appium-uiautomator2-driver/commit/01fe46943b875f7b00737bde911932e9bb876118))
117
+
118
+ ## [4.2.4](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.3...v4.2.4) (2025-06-24)
119
+
120
+ ### Miscellaneous Chores
121
+
122
+ * Bump android driver ([64c28f2](https://github.com/appium/appium-uiautomator2-driver/commit/64c28f24495028b975e9b33e719c38d6642ff6c8))
123
+
124
+ ## [4.2.3](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.2...v4.2.3) (2025-04-25)
125
+
126
+ ### Miscellaneous Chores
127
+
128
+ * add deprecated: true for get clipboard ([#887](https://github.com/appium/appium-uiautomator2-driver/issues/887)) ([19c6417](https://github.com/appium/appium-uiautomator2-driver/commit/19c6417ccfc336899d09d6bdf9b4532ad625babe))
129
+
130
+ ## [4.2.2](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.1...v4.2.2) (2025-04-23)
131
+
132
+ ### Miscellaneous Chores
133
+
134
+ * Bump android driver ([d52988e](https://github.com/appium/appium-uiautomator2-driver/commit/d52988ee20cba853d83218fee8cedbdc33c8a91c))
135
+
136
+ ## [4.2.1](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.0...v4.2.1) (2025-04-16)
137
+
138
+ ### Bug Fixes
139
+
140
+ * Update deprecated constant usage ([#885](https://github.com/appium/appium-uiautomator2-driver/issues/885)) ([9719cb5](https://github.com/appium/appium-uiautomator2-driver/commit/9719cb5bcffb55f0fd805eadfabf8804dad5c533))
141
+
142
+ ## [4.2.0](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.5...v4.2.0) (2025-04-08)
143
+
144
+ ### Features
145
+
146
+ * document the new currentDisplayId setting ([#882](https://github.com/appium/appium-uiautomator2-driver/issues/882)) ([cbb8d93](https://github.com/appium/appium-uiautomator2-driver/commit/cbb8d9305aba36bb5decc03445d596cfb095d6fa))
147
+
148
+ ## [4.1.5](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.4...v4.1.5) (2025-03-21)
149
+
150
+ ### Miscellaneous Chores
151
+
152
+ * Bump server version ([#874](https://github.com/appium/appium-uiautomator2-driver/issues/874)) ([b3b0898](https://github.com/appium/appium-uiautomator2-driver/commit/b3b089896e664efa50b0388e44ce1aa0e6af16bd))
153
+
154
+ ## [4.1.4](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.3...v4.1.4) (2025-03-20)
155
+
156
+ ### Bug Fixes
157
+
158
+ * Explicitly wait for the server shutdown before killing it forcefully ([#873](https://github.com/appium/appium-uiautomator2-driver/issues/873)) ([d3f50ef](https://github.com/appium/appium-uiautomator2-driver/commit/d3f50efc8d5b73451a1d105b5b684b67d7857326))
159
+
160
+ ## [4.1.3](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.2...v4.1.3) (2025-03-17)
161
+
162
+ ### Miscellaneous Chores
163
+
164
+ * remove duplicated mobile: backgroundApp definition from uia2 ([#871](https://github.com/appium/appium-uiautomator2-driver/issues/871)) ([1602c51](https://github.com/appium/appium-uiautomator2-driver/commit/1602c51d94084556fb3b1f2c2bba9e2605d7927a))
165
+
166
+ ## [4.1.2](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.1...v4.1.2) (2025-03-14)
167
+
168
+ ### Bug Fixes
169
+
170
+ * the return value of getConnectivity to follow the description ([e36a3cd](https://github.com/appium/appium-uiautomator2-driver/commit/e36a3cd2368459be44a0be76553b0024ba0ce060))
171
+
172
+ ## [4.1.1](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.0...v4.1.1) (2025-03-10)
173
+
174
+ ### Miscellaneous Chores
175
+
176
+ * bump io.appium.settings ([#870](https://github.com/appium/appium-uiautomator2-driver/issues/870)) ([3a999e7](https://github.com/appium/appium-uiautomator2-driver/commit/3a999e79ec610f1f3a28bcdb8bebb42ace093ce1))
177
+
178
+ ## [4.1.0](https://github.com/appium/appium-uiautomator2-driver/compare/v4.0.3...v4.1.0) (2025-02-26)
179
+
180
+ ### Features
181
+
182
+ * add more params in mobile: setGeolocation ([#867](https://github.com/appium/appium-uiautomator2-driver/issues/867)) ([8ead690](https://github.com/appium/appium-uiautomator2-driver/commit/8ead690dc9e8da1571604c4aba146644d6a1c2ab))
183
+
184
+ ## [4.0.3](https://github.com/appium/appium-uiautomator2-driver/compare/v4.0.2...v4.0.3) (2025-02-22)
185
+
186
+ ### Miscellaneous Chores
187
+
188
+ * Bumo android driver ([b28baaa](https://github.com/appium/appium-uiautomator2-driver/commit/b28baaa668b27d0496dad26cb69991be3b632e3f))
189
+
190
+ ## [4.0.2](https://github.com/appium/appium-uiautomator2-driver/compare/v4.0.1...v4.0.2) (2025-02-21)
191
+
192
+ ### Bug Fixes
193
+
194
+ * Add base path to proxy options ([#865](https://github.com/appium/appium-uiautomator2-driver/issues/865)) ([30a6ac3](https://github.com/appium/appium-uiautomator2-driver/commit/30a6ac3656b3ae28a07f4e6465fd630de88c16ca))
195
+
196
+ ## [4.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v4.0.0...v4.0.1) (2025-02-10)
197
+
198
+ ### Miscellaneous Chores
199
+
200
+ * docs for the new fields from AccessibilityNodeInfo ([#862](https://github.com/appium/appium-uiautomator2-driver/issues/862)) ([815c247](https://github.com/appium/appium-uiautomator2-driver/commit/815c247000e03cceac683e7a4122156e3ea5e2ea))
201
+
202
+ ## [4.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.10.0...v4.0.0) (2025-02-01)
203
+
204
+ ### ⚠ BREAKING CHANGES
205
+
206
+ * The following methods and properties were **removed**:
207
+ - mobileSetClipboard -> replaced by setClipboard
208
+ - mobileGetClipboard -> replaced by getClipboard
209
+ - executeMobile -> replaced by execute (the` script` argument must also be changed to start with `mobile: `)
210
+ - mobileCommandsMapping -> replaced by executeMethodsMap
211
+ - mobileGetAppStrings -> replaced by getStrings
212
+ * The following methods were **changed**:
213
+ - mobileDragGesture
214
+ - mobileFlingGesture
215
+ - mobileDoubleClickGesture
216
+ - mobileClickGesture
217
+ - mobilePinchOpenGesture
218
+ - mobilePinchCloseGesture
219
+ - mobileSwipeGesture
220
+ - mobileScrollGesture
221
+ - mobileScrollBackTo
222
+ - mobileScroll
223
+ - mobileDeepLink
224
+ - mobileAcceptAlert
225
+ - mobileDismissAlert
226
+ - mobileType
227
+ - mobileReplaceElementValue
228
+ - mobileInstallMultipleApks
229
+ - mobileBackgroundApp
230
+ - mobilePressKey
231
+ - mobileScreenshots
232
+ - mobileScheduleAction
233
+ - mobileUnscheduleAction
234
+ - mobileGetActionHistory
235
+ * The following obsolete type definitions were **removed**:
236
+ - DragOptions
237
+ - FlingOptions
238
+ - ClickOptions
239
+ - LongClickOptions
240
+ - PinchOptions
241
+ - SwipeOptions
242
+ - ScrollGestureOptions
243
+ - ScrollElementToElementOpts
244
+ - ScrollOptions
245
+ - DeepLinkOpts
246
+ - AcceptAlertOptions
247
+ - DismissAlertOptions
248
+ - TypingOptions
249
+ - ReplaceValueOptions
250
+ - InstallMultipleApksOptions
251
+ - BackgroundAppOptions
252
+ - PressKeyOptions
253
+ - ScreenshotsOpts
254
+ - ActionArgs
255
+ - SetClipboardOpts
256
+ - GetAppStringsOptions
257
+
258
+
259
+ Based on https://github.com/appium/appium-android-driver/pull/982
260
+
261
+ ### Features
262
+
263
+ * Add support of executeMethodMap ([#863](https://github.com/appium/appium-uiautomator2-driver/issues/863)) ([4c45c3a](https://github.com/appium/appium-uiautomator2-driver/commit/4c45c3a85a574cb4d207ab827ce98421812d99f2))
264
+
265
+ ## [3.10.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.9...v3.10.0) (2025-01-24)
266
+
267
+ ### Features
268
+
269
+ * bump appium-adb to handle screenState=SCREEN_STATE_OFF as locked ([#861](https://github.com/appium/appium-uiautomator2-driver/issues/861)) ([fdd362a](https://github.com/appium/appium-uiautomator2-driver/commit/fdd362a8087c66aa6a0825bb18865a43e2ee5288))
270
+
271
+ ## [3.9.9](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.8...v3.9.9) (2025-01-16)
272
+
273
+ ### Miscellaneous Chores
274
+
275
+ * bump io.appium.settings to include the broad cast receiver update ([#858](https://github.com/appium/appium-uiautomator2-driver/issues/858)) ([bd8cfe7](https://github.com/appium/appium-uiautomator2-driver/commit/bd8cfe77da8ab3f47a80af7550c0f8ebb9abb695))
276
+
277
+ ## [3.9.8](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.7...v3.9.8) (2025-01-09)
278
+
279
+ ### Miscellaneous Chores
280
+
281
+ * Add closing log quote ([2398564](https://github.com/appium/appium-uiautomator2-driver/commit/2398564421a8a05490cf077b8f32b8f6ddfb5f32))
282
+ * Bump adb ([#857](https://github.com/appium/appium-uiautomator2-driver/issues/857)) ([b443c0a](https://github.com/appium/appium-uiautomator2-driver/commit/b443c0ac13930ea9a0f9008a07538632bbb6e81f))
283
+
284
+ ## [3.9.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.6...v3.9.7) (2025-01-05)
285
+
286
+ ### Miscellaneous Chores
287
+
288
+ * Bump android driver ([f5a326e](https://github.com/appium/appium-uiautomator2-driver/commit/f5a326e385e782f1298d03901b8d4f3168ff0b90))
289
+
290
+ ## [3.9.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.5...v3.9.6) (2024-12-27)
291
+
292
+ ### Bug Fixes
293
+
294
+ * Tune retrieval of package launch info ([#853](https://github.com/appium/appium-uiautomator2-driver/issues/853)) ([90a68b1](https://github.com/appium/appium-uiautomator2-driver/commit/90a68b1d9cba41c28b198a4ee9aa4fa55379acb3))
295
+
296
+ ## [3.9.5](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.4...v3.9.5) (2024-12-14)
297
+
298
+ ### Miscellaneous Chores
299
+
300
+ * Tune contextUpdated event generation ([#850](https://github.com/appium/appium-uiautomator2-driver/issues/850)) ([324d094](https://github.com/appium/appium-uiautomator2-driver/commit/324d0940767e201e4675f31c2fbca0d34ed7da22))
301
+
302
+ ## [3.9.4](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.3...v3.9.4) (2024-12-13)
303
+
304
+ ### Miscellaneous Chores
305
+
306
+ * Replace occurrences of the deprecated errorAndThrow API ([#849](https://github.com/appium/appium-uiautomator2-driver/issues/849)) ([c562ca5](https://github.com/appium/appium-uiautomator2-driver/commit/c562ca58897e4df84e78a199b40a552b5659e026))
307
+
308
+ ## [3.9.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.2...v3.9.3) (2024-12-11)
309
+
310
+ ### Bug Fixes
311
+
312
+ * Make package parameter of deep link command optional ([#847](https://github.com/appium/appium-uiautomator2-driver/issues/847)) ([ddc7477](https://github.com/appium/appium-uiautomator2-driver/commit/ddc7477b6c62b93469364ed433b88cbdbb91e4b7))
313
+
314
+ ## [3.9.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.1...v3.9.2) (2024-12-09)
315
+
316
+ ### Miscellaneous Chores
317
+
318
+ * allow compatibility with appium 3 beta ([471e156](https://github.com/appium/appium-uiautomator2-driver/commit/471e156b9b537465b6a0d49cd92c0431be57fd64))
319
+
320
+ ## [3.9.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.0...v3.9.1) (2024-11-27)
321
+
322
+ ### Miscellaneous Chores
323
+
324
+ * Bump android driver ([1bea8e7](https://github.com/appium/appium-uiautomator2-driver/commit/1bea8e761d941fd2e7c4d4cc1a84570d1786f327))
325
+
326
+ ## [3.9.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.3...v3.9.0) (2024-11-18)
327
+
328
+ ### Features
329
+
330
+ * Add a BiDi event upon context change ([#838](https://github.com/appium/appium-uiautomator2-driver/issues/838)) ([fabbc8d](https://github.com/appium/appium-uiautomator2-driver/commit/fabbc8dad628fe0c9d776a542180711d836ff3be))
331
+
332
+ ## [3.8.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.2...v3.8.3) (2024-11-14)
333
+
334
+ ### Miscellaneous Chores
335
+
336
+ * Bump android driver ([728270f](https://github.com/appium/appium-uiautomator2-driver/commit/728270f90f6f82e37edb831a4b7e3832a5ea43eb))
337
+
338
+ ## [3.8.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.1...v3.8.2) (2024-11-11)
339
+
340
+ ### Miscellaneous Chores
341
+
342
+ * bump adb to include supporting activities with unicode chars ([#836](https://github.com/appium/appium-uiautomator2-driver/issues/836)) ([c36962e](https://github.com/appium/appium-uiautomator2-driver/commit/c36962ebc135a1d8f761aa4e1a9bada3488408c0))
343
+
344
+ ## [3.8.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.0...v3.8.1) (2024-10-31)
345
+
346
+ ### Miscellaneous Chores
347
+
348
+ * Bump android driver ([aeb5809](https://github.com/appium/appium-uiautomator2-driver/commit/aeb58092119ac58a7ff1c761332dd75f028f3e0a))
349
+
350
+ ## [3.8.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.11...v3.8.0) (2024-09-17)
351
+
352
+ ### Features
353
+
354
+ * Bump appium-chromedriver ([#828](https://github.com/appium/appium-uiautomator2-driver/issues/828)) ([653b140](https://github.com/appium/appium-uiautomator2-driver/commit/653b140b639c03ea8573efc2d3fe0662f60df681))
355
+
356
+ ## [3.7.11](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.10...v3.7.11) (2024-09-13)
357
+
358
+ ### Miscellaneous Chores
359
+
360
+ * Bump android driver ([c62ae8c](https://github.com/appium/appium-uiautomator2-driver/commit/c62ae8c632fb343e0d724a444994625c6b9a2f94))
361
+
362
+ ## [3.7.10](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.9...v3.7.10) (2024-09-12)
363
+
364
+ ### Miscellaneous Chores
365
+
366
+ * Bump android driver ([2b9ed23](https://github.com/appium/appium-uiautomator2-driver/commit/2b9ed23bec173c9c8b7683c5de42c04c7256a6f8))
367
+
368
+ ## [3.7.9](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.8...v3.7.9) (2024-09-03)
369
+
370
+ ### Miscellaneous Chores
371
+
372
+ * Bump server version ([716d364](https://github.com/appium/appium-uiautomator2-driver/commit/716d36404915c8b867b1b90fc9f986f681162357))
373
+
374
+ ## [3.7.8](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.7...v3.7.8) (2024-08-29)
375
+
376
+ ### Miscellaneous Chores
377
+
378
+ * bump android driver ([3b6b270](https://github.com/appium/appium-uiautomator2-driver/commit/3b6b270150221f84498824bd31904c91c2fafb20))
379
+
380
+ ## [3.7.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.6...v3.7.7) (2024-08-14)
381
+
382
+ ### Bug Fixes
383
+
384
+ * apply the latest io.appium.settings ([a1dfde4](https://github.com/appium/appium-uiautomator2-driver/commit/a1dfde4b3d9ffcfcdd89caa0e9382231970359bb))
385
+
386
+ ## [3.7.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.5...v3.7.6) (2024-08-06)
387
+
388
+ ### Miscellaneous Chores
389
+
390
+ * Bump adb ([36b265e](https://github.com/appium/appium-uiautomator2-driver/commit/36b265e9a39cf089936a145e7fc251a23423fbdb))
391
+
392
+ ## [3.7.5](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.4...v3.7.5) (2024-08-02)
393
+
394
+ ### Miscellaneous Chores
395
+
396
+ * Replace fancy-log dependency with appium logger ([#809](https://github.com/appium/appium-uiautomator2-driver/issues/809)) ([8ec7aa7](https://github.com/appium/appium-uiautomator2-driver/commit/8ec7aa7eff586a0b3ee898bb20dbded8ed44bc34))
397
+
398
+ ## [3.7.4](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.3...v3.7.4) (2024-07-23)
399
+
400
+ ### Bug Fixes
401
+
402
+ * stop uia2 process as well in cleanupAutomationLeftovers ([#807](https://github.com/appium/appium-uiautomator2-driver/issues/807)) ([69abc42](https://github.com/appium/appium-uiautomator2-driver/commit/69abc425ff36359ac7b58bead82ece0e0fdd1ab3))
403
+
404
+ ## [3.7.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.2...v3.7.3) (2024-07-15)
405
+
406
+ ### Miscellaneous Chores
407
+
408
+ * Bump android driver ([#806](https://github.com/appium/appium-uiautomator2-driver/issues/806)) ([b109867](https://github.com/appium/appium-uiautomator2-driver/commit/b109867e7e2a06fc301c9e82596d698979a338ee))
409
+
410
+ ## [3.7.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.1...v3.7.2) (2024-07-09)
411
+
412
+ ### Miscellaneous Chores
413
+
414
+ * Remove extra import ([9f2d42d](https://github.com/appium/appium-uiautomator2-driver/commit/9f2d42da50a444cd77d4432151656b2252e2c941))
415
+
416
+ ## [3.7.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.0...v3.7.1) (2024-07-03)
417
+
418
+ ### Bug Fixes
419
+
420
+ * Update instrumentation process handling logic ([#801](https://github.com/appium/appium-uiautomator2-driver/issues/801)) ([75da896](https://github.com/appium/appium-uiautomator2-driver/commit/75da896701399420b4880a71d0d28db59fa5d322))
421
+
422
+ ## [3.7.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.6.1...v3.7.0) (2024-06-27)
423
+
424
+ ### Features
425
+
426
+ * Add mobile: wrappers for clipboard APIs ([#800](https://github.com/appium/appium-uiautomator2-driver/issues/800)) ([7789b1d](https://github.com/appium/appium-uiautomator2-driver/commit/7789b1d4636c4ade8a6f28e759acccdfb25b53f8))
427
+
428
+ ## [3.6.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.6.0...v3.6.1) (2024-06-23)
429
+
430
+ ### Miscellaneous Chores
431
+
432
+ * Bump chai and chai-as-promised ([#799](https://github.com/appium/appium-uiautomator2-driver/issues/799)) ([35734db](https://github.com/appium/appium-uiautomator2-driver/commit/35734db0225b5d4af3d2aa72c2160149c94b954b))
433
+
434
+ ## [3.6.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.7...v3.6.0) (2024-06-22)
435
+
436
+ ### Features
437
+
438
+ * Document injectedImageProperties capability ([#798](https://github.com/appium/appium-uiautomator2-driver/issues/798)) ([48e3255](https://github.com/appium/appium-uiautomator2-driver/commit/48e3255eff9c3c0a6cd075f2a279ed1937664844))
439
+
440
+ ## [3.5.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.6...v3.5.7) (2024-06-22)
441
+
442
+ ### Bug Fixes
443
+
444
+ * uninstall installed uia2 servers if they were greater than on-going session ([#796](https://github.com/appium/appium-uiautomator2-driver/issues/796)) ([62b9056](https://github.com/appium/appium-uiautomator2-driver/commit/62b9056f4002d42d16a469709e03f43af6aec5a5))
445
+
446
+ ## [3.5.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.5...v3.5.6) (2024-06-18)
447
+
448
+ ### Miscellaneous Chores
449
+
450
+ * Bump server version ([91c7707](https://github.com/appium/appium-uiautomator2-driver/commit/91c770761cc5e33f153be8ec18591bc1cd07135f))
451
+
452
+ ## [3.5.5](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.4...v3.5.5) (2024-06-16)
453
+
454
+ ### Miscellaneous Chores
455
+
456
+ * bump server version ([8e6ec16](https://github.com/appium/appium-uiautomator2-driver/commit/8e6ec166ce99d65bee84182c5fee1a326460d71f))
457
+
458
+ ## [3.5.4](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.3...v3.5.4) (2024-06-14)
459
+
460
+ ### Bug Fixes
461
+
462
+ * Add a workaround for wrong adb exit code on service stop ([#794](https://github.com/appium/appium-uiautomator2-driver/issues/794)) ([31e79ab](https://github.com/appium/appium-uiautomator2-driver/commit/31e79ab059700c2b09297a705ac3b03268ec6b84))
463
+
464
+ ## [3.5.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.2...v3.5.3) (2024-06-10)
465
+
466
+ ### Miscellaneous Chores
467
+
468
+ * use latest io.appium.settings ([#789](https://github.com/appium/appium-uiautomator2-driver/issues/789)) ([13104ba](https://github.com/appium/appium-uiautomator2-driver/commit/13104ba69d55def1540c782425e62bac9050f8fa))
469
+
470
+ ## [3.5.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.1...v3.5.2) (2024-05-21)
471
+
472
+
473
+ ### Bug Fixes
474
+
475
+ * bring mobile: backgroundApp back ([#783](https://github.com/appium/appium-uiautomator2-driver/issues/783)) ([fcd7033](https://github.com/appium/appium-uiautomator2-driver/commit/fcd70333c5a94c3210f38d01039d2577d24f7b99))
476
+
477
+ ## [3.5.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.0...v3.5.1) (2024-05-16)
478
+
479
+
480
+ ### Miscellaneous Chores
481
+
482
+ * Update dev dependencies ([4224eaa](https://github.com/appium/appium-uiautomator2-driver/commit/4224eaab352a43bef0bbc5e50942c3d1af340cd7))
483
+
484
+ ## [3.5.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.4.0...v3.5.0) (2024-05-12)
485
+
486
+
487
+ ### Features
488
+
489
+ * Align the implementation of execute method map with other android drivers ([#780](https://github.com/appium/appium-uiautomator2-driver/issues/780)) ([d376a9b](https://github.com/appium/appium-uiautomator2-driver/commit/d376a9b344c2138fe89403640733dd489e965606))
490
+
491
+ ## [3.4.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.3.0...v3.4.0) (2024-05-11)
492
+
493
+
494
+ ### Features
495
+
496
+ * Add helpers to control bluetooth and nfc adapters ([#779](https://github.com/appium/appium-uiautomator2-driver/issues/779)) ([a9403ff](https://github.com/appium/appium-uiautomator2-driver/commit/a9403ffcd58560be6af0f8c80b302cf750789a98))
497
+
498
+ ## [3.3.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.2.0...v3.3.0) (2024-05-09)
499
+
500
+
501
+ ### Features
502
+
503
+ * add user option for mobile: isAppInstalled ([#778](https://github.com/appium/appium-uiautomator2-driver/issues/778)) ([2a0e9a5](https://github.com/appium/appium-uiautomator2-driver/commit/2a0e9a5d98a0f14bb69914136df24ff2c7633c02))
504
+
505
+ ## [3.2.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.1.0...v3.2.0) (2024-05-03)
506
+
507
+
508
+ ### Features
509
+
510
+ * Add `mobile: injectEmulatorCameraImage` extension ([#772](https://github.com/appium/appium-uiautomator2-driver/issues/772)) ([768a629](https://github.com/appium/appium-uiautomator2-driver/commit/768a629b1d24e7c96ffc28c9068f4bfe5a2393b4))
511
+
512
+ ## [3.1.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.8...v3.1.0) (2024-04-10)
513
+
514
+
515
+ ### Features
516
+
517
+ * Add the support of `timeZone` capability ([#761](https://github.com/appium/appium-uiautomator2-driver/issues/761)) ([f2039d3](https://github.com/appium/appium-uiautomator2-driver/commit/f2039d30c0df22f4720b285c9ca262e2d3f9d24f))
518
+
519
+ ## [3.0.8](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.7...v3.0.8) (2024-04-09)
520
+
521
+
522
+ ### Miscellaneous Chores
523
+
524
+ * Remove extra imports ([11aea03](https://github.com/appium/appium-uiautomator2-driver/commit/11aea03218fcb2e59e07bfcff25ddca86846a36f))
525
+
526
+ ## [3.0.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.6...v3.0.7) (2024-04-09)
527
+
528
+
529
+ ### Miscellaneous Chores
530
+
531
+ * Skip signature checks of server packages ([#759](https://github.com/appium/appium-uiautomator2-driver/issues/759)) ([6e43272](https://github.com/appium/appium-uiautomator2-driver/commit/6e4327213d8519f6a0768c2b0516ea01638a70b3))
532
+
533
+ ## [3.0.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.5...v3.0.6) (2024-04-08)
534
+
535
+
536
+ ### Miscellaneous Chores
537
+
538
+ * Bump android driver ([1cf44c6](https://github.com/appium/appium-uiautomator2-driver/commit/1cf44c6840f82de9ba59ee5c333b55fb24be70a2))
539
+
540
+ ## [3.0.5](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.4...v3.0.5) (2024-04-01)
541
+
542
+
543
+ ### Miscellaneous Chores
544
+
545
+ * bump appium-android-driver ([2683085](https://github.com/appium/appium-uiautomator2-driver/commit/2683085a2f412673b6ef6721e9b1632d2e5c505c))
546
+
547
+ ## [3.0.4](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.3...v3.0.4) (2024-03-20)
548
+
549
+
550
+ ### Bug Fixes
551
+
552
+ * Skip chromedriver proxy suspend if the proxy is not initialized yet ([#754](https://github.com/appium/appium-uiautomator2-driver/issues/754)) ([a6d9146](https://github.com/appium/appium-uiautomator2-driver/commit/a6d91468dc409bfdac017695ca4fb52a600d15a5))
553
+
554
+ ## [3.0.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.2...v3.0.3) (2024-03-18)
555
+
556
+
557
+ ### Miscellaneous Chores
558
+
559
+ * bump android driver ([decda6d](https://github.com/appium/appium-uiautomator2-driver/commit/decda6db2583dcf8d9c290df0f546278f4bca398))
560
+
561
+ ## [3.0.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.1...v3.0.2) (2024-03-07)
562
+
563
+
564
+ ### Miscellaneous Chores
565
+
566
+ * bump typescript ([b6f4cec](https://github.com/appium/appium-uiautomator2-driver/commit/b6f4cec5e95ef0d8196ad3134784c9e85cd0363c))
567
+
568
+ ## [3.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.0...v3.0.1) (2024-02-23)
569
+
570
+
571
+ ### Miscellaneous Chores
572
+
573
+ * bump uia2 server that has androidx.test.uiautomator:uiautomator:2.3.0 ([#744](https://github.com/appium/appium-uiautomator2-driver/issues/744)) ([56dab5d](https://github.com/appium/appium-uiautomator2-driver/commit/56dab5d4081bf9ca64b8736be636c5210965dc34))
574
+
575
+ ## [3.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.45.1...v3.0.0) (2024-02-10)
576
+
577
+
578
+ ### ⚠ BREAKING CHANGES
579
+
580
+ * Removed obsolete MJSONWP touch route handlers. Use W3C actions or gesture shortcuts instead:
581
+
582
+ - doSwipe
583
+ - doDrag
584
+ - touchDown
585
+ - touchLongClick
586
+ - touchMove
587
+ - touchUp
588
+ - tap
589
+ - doPerformMultiAction
590
+
591
+ ### Features
592
+
593
+ * Removed obsolete MJSONWP touch actions ([#738](https://github.com/appium/appium-uiautomator2-driver/issues/738)) ([520fe26](https://github.com/appium/appium-uiautomator2-driver/commit/520fe262c70883ba18aa01b2a34873516fbc8557))
594
+
595
+ ## [2.45.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.45.0...v2.45.1) (2024-02-10)
596
+
597
+
598
+ ### Bug Fixes
599
+
600
+ * Argument type for performActions API ([#735](https://github.com/appium/appium-uiautomator2-driver/issues/735)) ([d0e7c2f](https://github.com/appium/appium-uiautomator2-driver/commit/d0e7c2f9859de4382cd35366915b1b4a3af34514))
601
+
602
+ ## [2.45.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.44.3...v2.45.0) (2024-02-08)
603
+
604
+
605
+ ### Features
606
+
607
+ * add checkVersion option for mobile:installApp ([#736](https://github.com/appium/appium-uiautomator2-driver/issues/736)) ([95d46f4](https://github.com/appium/appium-uiautomator2-driver/commit/95d46f47cb738a6087da2d5262c0c7b6af1fedd1))
608
+
609
+ ## [2.44.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.44.2...v2.44.3) (2024-02-07)
610
+
611
+
612
+ ### Bug Fixes
613
+
614
+ * Init adb as the first step upon session creation ([#733](https://github.com/appium/appium-uiautomator2-driver/issues/733)) ([fbe80e9](https://github.com/appium/appium-uiautomator2-driver/commit/fbe80e9df51b84da115184ebe1974760cdd47d67))
615
+
616
+ ## [2.44.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.44.1...v2.44.2) (2024-02-06)
617
+
618
+
619
+ ### Bug Fixes
620
+
621
+ * Detect the browser activity dynamically ([#730](https://github.com/appium/appium-uiautomator2-driver/issues/730)) ([9cc4116](https://github.com/appium/appium-uiautomator2-driver/commit/9cc4116759f0e8d4975c92a6667660bea38609d9))
622
+
623
+ ## [2.44.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.44.0...v2.44.1) (2024-02-06)
624
+
625
+
626
+ ### Bug Fixes
627
+
628
+ * fix mobile: screenshots for WDIO ([#731](https://github.com/appium/appium-uiautomator2-driver/issues/731)) ([ac28c0c](https://github.com/appium/appium-uiautomator2-driver/commit/ac28c0cde3716dd684e088b4d12ca823b4316aaf))
629
+
630
+ ## [2.44.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.4...v2.44.0) (2024-02-02)
631
+
632
+
633
+ ### Features
634
+
635
+ * Paralellize session setup steps ([#729](https://github.com/appium/appium-uiautomator2-driver/issues/729)) ([b11356f](https://github.com/appium/appium-uiautomator2-driver/commit/b11356fa075aa71003bc363df050286ee738f4b8))
636
+
637
+ ## [2.43.4](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.3...v2.43.4) (2024-01-30)
638
+
639
+
640
+ ### Miscellaneous Chores
641
+
642
+ * Bump server version ([f0b0b84](https://github.com/appium/appium-uiautomator2-driver/commit/f0b0b8448e97465921f16064fd14b7cbc9eb4fa6))
643
+
644
+ ## [2.43.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.2...v2.43.3) (2024-01-29)
645
+
646
+
647
+ ### Miscellaneous Chores
648
+
649
+ * Bump android driver ([ffd126d](https://github.com/appium/appium-uiautomator2-driver/commit/ffd126d5eef1d89622b93785348279042c4f832d))
650
+
651
+ ## [2.43.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.1...v2.43.2) (2024-01-27)
652
+
653
+
654
+ ### Miscellaneous Chores
655
+
656
+ * Remove husky and commitlint ([#726](https://github.com/appium/appium-uiautomator2-driver/issues/726)) ([e9147ee](https://github.com/appium/appium-uiautomator2-driver/commit/e9147ee98d8e751414cd8c3c3a9986256e66641a))
657
+
658
+ ## [2.43.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.0...v2.43.1) (2024-01-26)
659
+
660
+
661
+ ### Bug Fixes
662
+
663
+ * createADB ([#724](https://github.com/appium/appium-uiautomator2-driver/issues/724)) ([fef068a](https://github.com/appium/appium-uiautomator2-driver/commit/fef068a4c5d4513223c1f9e3a5f1ba53c32adec6))
664
+
665
+ ## [2.43.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.42.2...v2.43.0) (2024-01-25)
666
+
667
+
668
+ ### Features
669
+
670
+ * Update android-driver ([#720](https://github.com/appium/appium-uiautomator2-driver/issues/720)) ([f352359](https://github.com/appium/appium-uiautomator2-driver/commit/f35235970904fd89f736b4fdd9a8635858719edb))
671
+
672
+ ## [2.42.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.42.1...v2.42.2) (2024-01-23)
673
+
674
+
675
+ ### Bug Fixes
676
+
677
+ * bump appium android driver to 7.8.3 (for getContexts) ([#718](https://github.com/appium/appium-uiautomator2-driver/issues/718)) ([1bd9358](https://github.com/appium/appium-uiautomator2-driver/commit/1bd9358566a902dcd7062e0f0667a724cc1a1c26))
678
+
679
+ ## [2.42.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.42.0...v2.42.1) (2024-01-14)
680
+
681
+
682
+ ### Miscellaneous Chores
683
+
684
+ * Bump appium-adb ([#716](https://github.com/appium/appium-uiautomator2-driver/issues/716)) ([598f137](https://github.com/appium/appium-uiautomator2-driver/commit/598f137c7bcde8694a189f161397f6cb70c7277c))
685
+
686
+ ## [2.42.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.41.0...v2.42.0) (2024-01-12)
687
+
688
+
689
+ ### Features
690
+
691
+ * Use APIs imported from the io.appium.settings package ([#715](https://github.com/appium/appium-uiautomator2-driver/issues/715)) ([f55625a](https://github.com/appium/appium-uiautomator2-driver/commit/f55625a32afc174cec6d92178ef15bcc0bb0d79f))
692
+
693
+ ## [2.41.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.40.2...v2.41.0) (2024-01-11)
694
+
695
+
696
+ ### Features
697
+
698
+ * Document the helper method to simulate the low-memory event ([#714](https://github.com/appium/appium-uiautomator2-driver/issues/714)) ([d9c9863](https://github.com/appium/appium-uiautomator2-driver/commit/d9c98638296c4d770f9e50d86ec6775cd4b00c2a))
699
+
700
+ ## [2.40.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.40.1...v2.40.2) (2024-01-10)
701
+
702
+
703
+ ### Miscellaneous Chores
704
+
705
+ * Bump server version ([48b6914](https://github.com/appium/appium-uiautomator2-driver/commit/48b691423db1100787ee033a225a7f5211906f8a))
706
+
707
+ ## [2.40.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.40.0...v2.40.1) (2024-01-10)
708
+
709
+
710
+ ### Bug Fixes
711
+
712
+ * io.appium.settings process check as the foreground service check ([#713](https://github.com/appium/appium-uiautomator2-driver/issues/713)) ([4fcdd7b](https://github.com/appium/appium-uiautomator2-driver/commit/4fcdd7b4f96f8fae7f658340c5e228fb85c210cf))
713
+
714
+ ## [2.40.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.39.0...v2.40.0) (2024-01-07)
715
+
716
+
717
+ ### Features
718
+
719
+ * update io.appium.settings to use newer location deps ([#712](https://github.com/appium/appium-uiautomator2-driver/issues/712)) ([0d595aa](https://github.com/appium/appium-uiautomator2-driver/commit/0d595aac2bbadd3756a9ff58f7906ea57da078f1))
720
+
721
+ ## [2.39.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.38.0...v2.39.0) (2024-01-05)
722
+
723
+
724
+ ### Features
725
+
726
+ * Add doctor checks ([#711](https://github.com/appium/appium-uiautomator2-driver/issues/711)) ([0e6c8fe](https://github.com/appium/appium-uiautomator2-driver/commit/0e6c8fed60345125f8ca78d70bb8e934cd50a6bc))
727
+
728
+ ## [2.38.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.37.1...v2.38.0) (2024-01-05)
729
+
730
+
731
+ ### Features
732
+
733
+ * Bump the server version ([#710](https://github.com/appium/appium-uiautomator2-driver/issues/710)) ([4ee3b7e](https://github.com/appium/appium-uiautomator2-driver/commit/4ee3b7eeac77fa53d3e437bc311e31a1d057176e))
734
+
735
+ ## [2.37.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.37.0...v2.37.1) (2024-01-03)
736
+
737
+
738
+ ### Bug Fixes
739
+
740
+ * minor fixes for upcoming androidx.test.uiautomator:uiautomator:2.3.0 ([#708](https://github.com/appium/appium-uiautomator2-driver/issues/708)) ([166ab62](https://github.com/appium/appium-uiautomator2-driver/commit/166ab623e99b02e06b423d1737814896ee685cba))
741
+
742
+ ## [2.37.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.36.0...v2.37.0) (2023-12-30)
743
+
744
+
745
+ ### Features
746
+
747
+ * bump the server's targetSdkVersion from 32 to 33 ([#705](https://github.com/appium/appium-uiautomator2-driver/issues/705)) ([8fda76d](https://github.com/appium/appium-uiautomator2-driver/commit/8fda76d2900d63b51b08c0e3aa912bb11ee8992d))
748
+
749
+ ## [2.36.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.35.0...v2.36.0) (2023-12-26)
750
+
751
+
752
+ ### Features
753
+
754
+ * bump server's targetSdkVersion from 30 to 32 ([#702](https://github.com/appium/appium-uiautomator2-driver/issues/702)) ([e49b991](https://github.com/appium/appium-uiautomator2-driver/commit/e49b991a3be7872f61def86c8c3f1d4815678736))
755
+
756
+ ## [2.35.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.34.2...v2.35.0) (2023-12-18)
757
+
758
+
759
+ ### Features
760
+
761
+ * let mobile: getContexts gives waitForWebviewMs ([#699](https://github.com/appium/appium-uiautomator2-driver/issues/699)) ([c0f90cf](https://github.com/appium/appium-uiautomator2-driver/commit/c0f90cfd8c01d3852fbc3786c6458290441f18ae))
762
+
763
+ ## [2.34.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.34.1...v2.34.2) (2023-12-02)
764
+
765
+
766
+ ### Miscellaneous Chores
767
+
768
+ * update publish.js.yml ([#696](https://github.com/appium/appium-uiautomator2-driver/issues/696)) ([2af984f](https://github.com/appium/appium-uiautomator2-driver/commit/2af984f3d5d289c25d0b4a694f8a057db068c48a))
769
+
770
+ ## [2.34.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.34.0...v2.34.1) (2023-11-08)
771
+
772
+
773
+ ### Miscellaneous Chores
774
+
775
+ * use omit to prune dev and peer ([#693](https://github.com/appium/appium-uiautomator2-driver/issues/693)) ([712cfce](https://github.com/appium/appium-uiautomator2-driver/commit/712cfce64767ae0d0785da49248f9d35bcf15015))
776
+
777
+ ## [2.34.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.33.1...v2.34.0) (2023-11-03)
778
+
779
+
780
+ ### Features
781
+
782
+ * Add support of UiModeManager service commands ([#691](https://github.com/appium/appium-uiautomator2-driver/issues/691)) ([89303f0](https://github.com/appium/appium-uiautomator2-driver/commit/89303f0e77dc7bbc6c7a3e685efd3ecb63370c94))
783
+
784
+ ## [2.33.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.33.0...v2.33.1) (2023-10-31)
785
+
786
+
787
+ ### Bug Fixes
788
+
789
+ * Properly read systemPort value from capabilities ([#689](https://github.com/appium/appium-uiautomator2-driver/issues/689)) ([cfaccb5](https://github.com/appium/appium-uiautomator2-driver/commit/cfaccb528c8a42c4185ca88c2dafbcbbc4ee80c2))
790
+
791
+ ## [2.33.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.32.3...v2.33.0) (2023-10-30)
792
+
793
+
794
+ ### Features
795
+
796
+ * Add hideKeyboard capability ([#686](https://github.com/appium/appium-uiautomator2-driver/issues/686)) ([708f41c](https://github.com/appium/appium-uiautomator2-driver/commit/708f41c087f64f32a022dd34715dc68b4004a852))
797
+
798
+ ## [2.32.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.32.2...v2.32.3) (2023-10-19)
799
+
800
+
801
+ ### Miscellaneous Chores
802
+
803
+ * Always use latest types ([19754b2](https://github.com/appium/appium-uiautomator2-driver/commit/19754b2b0043b03df729e588a62eec0e571557b3))
804
+
805
+ ## [2.32.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.32.1...v2.32.2) (2023-10-18)
806
+
807
+
808
+ ### Miscellaneous Chores
809
+
810
+ * Remove the obsolete coverage-related stuff ([#677](https://github.com/appium/appium-uiautomator2-driver/issues/677)) ([977816e](https://github.com/appium/appium-uiautomator2-driver/commit/977816e6eaed4780a91225178d0d98aa8fa5c5b5))
811
+
812
+ ## [2.32.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.32.0...v2.32.1) (2023-10-17)
813
+
814
+
815
+ ### Miscellaneous Chores
816
+
817
+ * Remove obsolete driver options ([#676](https://github.com/appium/appium-uiautomator2-driver/issues/676)) ([2a296dc](https://github.com/appium/appium-uiautomator2-driver/commit/2a296dc7a82e686f7cf811db72fe02bd143fca7b))
818
+
819
+ ## [2.32.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.4...v2.32.0) (2023-10-17)
820
+
821
+
822
+ ### Features
823
+
824
+ * Add 'mobile: deviceidle' extension ([#673](https://github.com/appium/appium-uiautomator2-driver/issues/673)) ([5c59c10](https://github.com/appium/appium-uiautomator2-driver/commit/5c59c10488a216c3c526c9a1c3326a9aea6d31de))
825
+
826
+ ## [2.31.4](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.3...v2.31.4) (2023-10-16)
827
+
828
+
829
+ ### Miscellaneous Chores
830
+
831
+ * Normalize execute script names ([#672](https://github.com/appium/appium-uiautomator2-driver/issues/672)) ([ca1d6e9](https://github.com/appium/appium-uiautomator2-driver/commit/ca1d6e94c058cc9ae8511c7b45e4f0c577b83de8))
832
+
833
+ ## [2.31.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.2...v2.31.3) (2023-10-15)
834
+
835
+
836
+ ### Bug Fixes
837
+
838
+ * Make app not required ([#664](https://github.com/appium/appium-uiautomator2-driver/issues/664)) ([636391e](https://github.com/appium/appium-uiautomator2-driver/commit/636391e53313f6c612a87beacfb15d7fdd1fa439))
839
+
840
+ ## [2.31.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.1...v2.31.2) (2023-10-15)
841
+
842
+
843
+ ### Miscellaneous Chores
844
+
845
+ * bump css-selector-parser to v3 ([#663](https://github.com/appium/appium-uiautomator2-driver/issues/663)) ([179670e](https://github.com/appium/appium-uiautomator2-driver/commit/179670e152c6c01c88183f539902220b775ff0c4))
846
+
847
+ ## [2.31.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.0...v2.31.1) (2023-10-14)
848
+
849
+
850
+ ### Miscellaneous Chores
851
+
852
+ * add error log for this.adb.setHiddenApiPolicy error ([#656](https://github.com/appium/appium-uiautomator2-driver/issues/656)) ([5c076c5](https://github.com/appium/appium-uiautomator2-driver/commit/5c076c5c4ffb565a4d8f44f8f0595e2b19c2e99c))
853
+
854
+ ## [2.31.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.30.0...v2.31.0) (2023-10-14)
855
+
856
+
857
+ ### Features
858
+
859
+ * Bump android driver to v7 ([#662](https://github.com/appium/appium-uiautomator2-driver/issues/662)) ([a54bc4a](https://github.com/appium/appium-uiautomator2-driver/commit/a54bc4a2d45bed3ddd0f632048f928b76609e0b2))
860
+
861
+ ## [2.30.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.11...v2.30.0) (2023-10-13)
862
+
863
+
864
+ ### Features
865
+
866
+ * add all the types ([#635](https://github.com/appium/appium-uiautomator2-driver/issues/635)) ([623f49b](https://github.com/appium/appium-uiautomator2-driver/commit/623f49ba363bcfd930021fb5fa7cfe030b5683fb))
867
+
868
+ ## [2.29.11](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.10...v2.29.11) (2023-10-08)
869
+
870
+
871
+ ### Miscellaneous Chores
872
+
873
+ * Bump appium-adb ([92e9884](https://github.com/appium/appium-uiautomator2-driver/commit/92e98841a2bb5c6dfd7924d55a82bb65194c8b11))
874
+
875
+ ## [2.29.10](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.9...v2.29.10) (2023-09-24)
876
+
877
+
878
+ ### Bug Fixes
879
+
880
+ * release package ([#658](https://github.com/appium/appium-uiautomator2-driver/issues/658)) ([ef483e3](https://github.com/appium/appium-uiautomator2-driver/commit/ef483e34ec9a23c3b63ab76d849b25403435a58e))
881
+
882
+ ## [2.29.9](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.8...v2.29.9) (2023-09-21)
883
+
884
+
885
+ ### Bug Fixes
886
+
887
+ * check if the instrumentation process stops by sending a request ([#655](https://github.com/appium/appium-uiautomator2-driver/issues/655)) ([d42950a](https://github.com/appium/appium-uiautomator2-driver/commit/d42950acb44ad8458932f4617cf110825dab8737))
888
+
889
+ ## [2.29.8](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.7...v2.29.8) (2023-09-14)
890
+
891
+
892
+ ### Miscellaneous Chores
893
+
894
+ * Bump android driver ([a69ca17](https://github.com/appium/appium-uiautomator2-driver/commit/a69ca17842d315751af5cf25b1589148a3d41e2a))
895
+
896
+ ## [2.29.7](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.6...v2.29.7) (2023-09-12)
897
+
898
+
899
+ ### Miscellaneous Chores
900
+
901
+ * Bump modules ([fcb6a3a](https://github.com/appium/appium-uiautomator2-driver/commit/fcb6a3ac19cd8f685a82cb8288879d74368e7f5e))
902
+
903
+ ## [2.29.6](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.5...v2.29.6) (2023-09-07)
904
+
905
+
906
+ ### Bug Fixes
907
+
908
+ * Add missing command accessors ([#652](https://github.com/appium/appium-uiautomator2-driver/issues/652)) ([8e39019](https://github.com/appium/appium-uiautomator2-driver/commit/8e39019f869f9ec520ffe5cf886aa46fe2be487e))
909
+
910
+ ## [2.29.5](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.4...v2.29.5) (2023-08-21)
911
+
912
+
913
+ ### Bug Fixes
914
+
915
+ * upgrade appium-chromedriver to latest ([ecfecbf](https://github.com/appium/appium-uiautomator2-driver/commit/ecfecbf75dce2f037a4344bed065fb538be64cda))
916
+
917
+ ## [2.29.4](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.3...v2.29.4) (2023-08-09)
918
+
919
+
920
+ ### Miscellaneous Chores
921
+
922
+ * Disable app capability presence validation ([#641](https://github.com/appium/appium-uiautomator2-driver/issues/641)) ([7c78543](https://github.com/appium/appium-uiautomator2-driver/commit/7c7854360c142fa8dc846795a13f62203b572b02))
923
+
924
+ ## [2.29.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.2...v2.29.3) (2023-07-29)
925
+
926
+
927
+ ### Miscellaneous Chores
928
+
929
+ * Bump chromedriver ([4ec1624](https://github.com/appium/appium-uiautomator2-driver/commit/4ec162400ac02a9ed4720608f0d11d239e9aa9d7))
930
+
931
+ ## [2.29.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.1...v2.29.2) (2023-07-03)
932
+
933
+
934
+ ### Miscellaneous Chores
935
+
936
+ * Bump server version ([583630f](https://github.com/appium/appium-uiautomator2-driver/commit/583630f8d8f9b3f0259a362b50a04313e966631a))
937
+
938
+ ## [2.29.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.0...v2.29.1) (2023-06-29)
939
+
940
+
941
+ ### Miscellaneous Chores
942
+
943
+ * Bump the server version ([c202967](https://github.com/appium/appium-uiautomator2-driver/commit/c202967482a3748a12be70edec87fb518766a638))
944
+
945
+ ## [2.29.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.28.1...v2.29.0) (2023-06-25)
946
+
947
+
948
+ ### Features
949
+
950
+ * Allow to take screenshots of multiple Android displays ([#628](https://github.com/appium/appium-uiautomator2-driver/issues/628)) ([3501892](https://github.com/appium/appium-uiautomator2-driver/commit/3501892dcea9fec90dfedb38700888542e3f96f3))
951
+
952
+ ## [2.28.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.28.0...v2.28.1) (2023-06-23)
953
+
954
+
955
+ ### Miscellaneous Chores
956
+
957
+ * Bump appium-adb version ([#632](https://github.com/appium/appium-uiautomator2-driver/issues/632)) ([2897505](https://github.com/appium/appium-uiautomator2-driver/commit/28975051d10dbaf5316a60ab3ed237dd4edb2d4c))
958
+
959
+ ## [2.28.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.27.0...v2.28.0) (2023-06-22)
960
+
961
+
962
+ ### Features
963
+
964
+ * Optimize server packages installation ([#631](https://github.com/appium/appium-uiautomator2-driver/issues/631)) ([ddfceab](https://github.com/appium/appium-uiautomator2-driver/commit/ddfceab31ac64afe67219537f7fe3f8d03bbfb28))
965
+
966
+ ## [2.27.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.26.3...v2.27.0) (2023-06-21)
967
+
968
+
969
+ ### Features
970
+
971
+ * add the description of setting API snapshotMaxDepth ([#629](https://github.com/appium/appium-uiautomator2-driver/issues/629)) ([c74ad63](https://github.com/appium/appium-uiautomator2-driver/commit/c74ad638af2bddd107bb774c76f2683acb7a8a07))
972
+
973
+ ## [2.26.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.26.2...v2.26.3) (2023-06-21)
974
+
975
+
976
+ ### Bug Fixes
977
+
978
+ * mobila: lock ([#630](https://github.com/appium/appium-uiautomator2-driver/issues/630)) ([de15791](https://github.com/appium/appium-uiautomator2-driver/commit/de157919d02cafdb85218be957b9b7e390efcd78))
979
+
980
+ ## [2.26.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.26.1...v2.26.2) (2023-06-16)
981
+
982
+
983
+ ### Miscellaneous Chores
984
+
985
+ * bump android driver ([ad80174](https://github.com/appium/appium-uiautomator2-driver/commit/ad8017480bba8e3024da87a7ff9a891618fb5e3f))
986
+
987
+ ## [2.26.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.26.0...v2.26.1) (2023-06-13)
988
+
989
+
990
+ ### Bug Fixes
991
+
992
+ * make releaseActions to a no-op ([#625](https://github.com/appium/appium-uiautomator2-driver/issues/625)) ([740f90a](https://github.com/appium/appium-uiautomator2-driver/commit/740f90ae41ad761de6dfab92ef61b279fcad2cef))
993
+
994
+ ## [2.26.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.25.3...v2.26.0) (2023-06-11)
995
+
996
+
997
+ ### Features
998
+
999
+ * Add extensions for scheduled actions ([#616](https://github.com/appium/appium-uiautomator2-driver/issues/616)) ([3e1c24d](https://github.com/appium/appium-uiautomator2-driver/commit/3e1c24da84d7bc2084b32addad305575c252f43b))
1000
+
1001
+ ## [2.25.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.25.2...v2.25.3) (2023-06-08)
1002
+
1003
+
1004
+ ### Miscellaneous Chores
1005
+
1006
+ * add logging for mjpeg broadcast request ([#622](https://github.com/appium/appium-uiautomator2-driver/issues/622)) ([da64bf5](https://github.com/appium/appium-uiautomator2-driver/commit/da64bf5ba2ed1ea95a6c2292d9ea557bd8229f4f))
1007
+
1008
+ ## [2.25.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.25.1...v2.25.2) (2023-06-02)
1009
+
1010
+
1011
+ ### Miscellaneous Chores
1012
+
1013
+ * Bump appium-adb ([30ea8ae](https://github.com/appium/appium-uiautomator2-driver/commit/30ea8ae511e241743b5787cc157467eb87a38b1e))
1014
+
1015
+ ## [2.25.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.25.0...v2.25.1) (2023-05-24)
1016
+
1017
+
1018
+ ### Bug Fixes
1019
+
1020
+ * Update extension command name ([0e488f4](https://github.com/appium/appium-uiautomator2-driver/commit/0e488f4615ea2dbc9744b6be8ae08faa82eed49e))
1021
+
1022
+ ## [2.25.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.24.2...v2.25.0) (2023-05-22)
1023
+
1024
+
1025
+ ### Features
1026
+
1027
+ * Add a wrapper over status bar commands ([#615](https://github.com/appium/appium-uiautomator2-driver/issues/615)) ([7ec9f8c](https://github.com/appium/appium-uiautomator2-driver/commit/7ec9f8c3582820ea37322113024d758b8752b3e5))
1028
+
1029
+ ## [2.24.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.24.1...v2.24.2) (2023-05-22)
1030
+
1031
+
1032
+ ### Bug Fixes
1033
+
1034
+ * Mobile method name ([896ade4](https://github.com/appium/appium-uiautomator2-driver/commit/896ade4bc74f049dda813a6ed675141919d25437))
1035
+
1036
+ ## [2.24.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.24.0...v2.24.1) (2023-05-16)
1037
+
1038
+
1039
+ ### Miscellaneous Chores
1040
+
1041
+ * Bump android-driver component ([e416860](https://github.com/appium/appium-uiautomator2-driver/commit/e4168608bcfc56440937b1f3bdb10a154392d51b))
1042
+
1043
+ ## [2.24.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.23.0...v2.24.0) (2023-05-05)
1044
+
1045
+
1046
+ ### Features
1047
+
1048
+ * Add mobile wrapper for performance data collectors ([#613](https://github.com/appium/appium-uiautomator2-driver/issues/613)) ([cfd13f8](https://github.com/appium/appium-uiautomator2-driver/commit/cfd13f8e3d2cec60c0c0379e8336f3a62753cd96))
1049
+
1050
+ ## [2.23.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.22.1...v2.23.0) (2023-04-30)
1051
+
1052
+
1053
+ ### Features
1054
+
1055
+ * Add mobile wrappers for GPS and notification helpers ([#608](https://github.com/appium/appium-uiautomator2-driver/issues/608)) ([97c2989](https://github.com/appium/appium-uiautomator2-driver/commit/97c2989bcf469bb45e735237fe91c4797f2403ea))
1056
+
1057
+ ## [2.22.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.22.0...v2.22.1) (2023-04-28)
1058
+
1059
+
1060
+ ### Bug Fixes
1061
+
1062
+ * Extension name ([4804648](https://github.com/appium/appium-uiautomator2-driver/commit/48046485c9b54108310bbcfe85710f6737b2fe3e))
1063
+
1064
+ ## [2.22.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.21.0...v2.22.0) (2023-04-28)
1065
+
1066
+
1067
+ ### Features
1068
+
1069
+ * Add more mobile extensions ([#606](https://github.com/appium/appium-uiautomator2-driver/issues/606)) ([55a1e79](https://github.com/appium/appium-uiautomator2-driver/commit/55a1e798ac73c812ad7cc0d8897d330f9d51c2b0))
1070
+
1071
+ ## [2.21.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.20.0...v2.21.0) (2023-04-27)
1072
+
1073
+
1074
+ ### Features
1075
+
1076
+ * Add mobile wrappers for getDisplayDensity and getSystemBars extensions ([#605](https://github.com/appium/appium-uiautomator2-driver/issues/605)) ([0e8a4cf](https://github.com/appium/appium-uiautomator2-driver/commit/0e8a4cf24540ec44569422c60c50367c3cc69888))
1077
+
1078
+ ## [2.20.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.19.0...v2.20.0) (2023-04-26)
1079
+
1080
+
1081
+ ### Features
1082
+
1083
+ * Add mobile wrappers for returning the current package and activity names ([#604](https://github.com/appium/appium-uiautomator2-driver/issues/604)) ([ad9f21a](https://github.com/appium/appium-uiautomator2-driver/commit/ad9f21a3eeedc75346059306de02a64234fd76ad))
1084
+
1085
+ ## [2.19.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.18.0...v2.19.0) (2023-04-25)
1086
+
1087
+
1088
+ ### Features
1089
+
1090
+ * Add mobile wrapper for backgroundApp ([#603](https://github.com/appium/appium-uiautomator2-driver/issues/603)) ([925f775](https://github.com/appium/appium-uiautomator2-driver/commit/925f77598db5a0edd3d253cf0d3477e6ebddbca6))
1091
+
1092
+ ## [2.18.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.17.0...v2.18.0) (2023-04-20)
1093
+
1094
+
1095
+ ### Features
1096
+
1097
+ * Add mobile methods for lock and isLocked ([#600](https://github.com/appium/appium-uiautomator2-driver/issues/600)) ([24e90b2](https://github.com/appium/appium-uiautomator2-driver/commit/24e90b217e0e2ab807184c9e28a82e55027e9e65))
1098
+
1099
+ ## [2.17.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.16.0...v2.17.0) (2023-04-20)
1100
+
1101
+
1102
+ ### Features
1103
+
1104
+ * Add mobile extension for pressKey action ([#597](https://github.com/appium/appium-uiautomator2-driver/issues/597)) ([093edec](https://github.com/appium/appium-uiautomator2-driver/commit/093edecacb7750f2d74b9abf6d54e20bbd76c1c1))
1105
+
1106
+ ## [2.16.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.15.0...v2.16.0) (2023-04-20)
1107
+
1108
+
1109
+ ### Features
1110
+
1111
+ * Add mobile extensions for on-screen keyboard ([#594](https://github.com/appium/appium-uiautomator2-driver/issues/594)) ([09e839e](https://github.com/appium/appium-uiautomator2-driver/commit/09e839e7d85b3845de4f6d3fa12896144e01caa2))
1112
+
1113
+ ## [2.15.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.14.0...v2.15.0) (2023-04-15)
1114
+
1115
+
1116
+ ### Features
1117
+
1118
+ * Add 'mobile: getAppStrings' extension ([#593](https://github.com/appium/appium-uiautomator2-driver/issues/593)) ([0705269](https://github.com/appium/appium-uiautomator2-driver/commit/07052696f9926b24a0343e2ab7aa7656cffc860b))
1119
+
1120
+ ## [2.14.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.13.0...v2.14.0) (2023-04-04)
1121
+
1122
+
1123
+ ### Features
1124
+
1125
+ * add shouldTerminateApp capability ([#591](https://github.com/appium/appium-uiautomator2-driver/issues/591)) ([853acb3](https://github.com/appium/appium-uiautomator2-driver/commit/853acb3d9848361a86b9d3246fada138f07434ce))
1126
+
1127
+ ## [2.13.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.7...v2.13.0) (2023-04-04)
1128
+
1129
+
1130
+ ### Features
1131
+
1132
+ * Add setConnectivity and getConnectivity extensions ([#590](https://github.com/appium/appium-uiautomator2-driver/issues/590)) ([f281a40](https://github.com/appium/appium-uiautomator2-driver/commit/f281a400c0097abe20fc8a852f244af775b112b1))
1133
+
1134
+ ## [2.12.7](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.6...v2.12.7) (2023-03-24)
1135
+
1136
+
1137
+ ### Bug Fixes
1138
+
1139
+ * chromedriver version comparison in the chromedriver download ([#587](https://github.com/appium/appium-uiautomator2-driver/issues/587)) ([3aa3c84](https://github.com/appium/appium-uiautomator2-driver/commit/3aa3c848012149d0997b5c0f70e8bcf9daba0328))
1140
+
1141
+ ## [2.12.6](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.5...v2.12.6) (2023-02-22)
1142
+
1143
+
1144
+ ### Miscellaneous Chores
1145
+
1146
+ * Bump android-driver ([77b3120](https://github.com/appium/appium-uiautomator2-driver/commit/77b3120d03c6d8e275f0a43c6f322c79619d5fb6))
1147
+
1148
+ ## [2.12.5](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.4...v2.12.5) (2023-02-21)
1149
+
1150
+
1151
+ ### Bug Fixes
1152
+
1153
+ * actually publish reset script ([a2bc02f](https://github.com/appium/appium-uiautomator2-driver/commit/a2bc02f8956590e3e02b22d75ca412174e6341f9)), closes [appium/appium#501](https://github.com/appium/appium/issues/501)
1154
+
1155
+ ## [2.12.4](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.3...v2.12.4) (2023-02-16)
1156
+
1157
+
1158
+ ### Miscellaneous Chores
1159
+
1160
+ * remove unused unicodeKeyboard as uia2 ([#581](https://github.com/appium/appium-uiautomator2-driver/issues/581)) ([605383f](https://github.com/appium/appium-uiautomator2-driver/commit/605383f581919ab546e62368937295b48a97521e))
1161
+
1162
+ ## [2.12.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.2...v2.12.3) (2023-02-02)
1163
+
1164
+
1165
+ ### Miscellaneous Chores
1166
+
1167
+ * bump chromedriver ([21003b3](https://github.com/appium/appium-uiautomator2-driver/commit/21003b30905778b770536bf950b7eebc8a9decf3))
1168
+
1169
+ ## [2.12.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.1...v2.12.2) (2023-01-12)
1170
+
1171
+
1172
+ ### Bug Fixes
1173
+
1174
+ * specify supported non-standard commands in newMethodMap ([8a51004](https://github.com/appium/appium-uiautomator2-driver/commit/8a5100486cc3d39c0a8f0e77b2eb574ce1a01e04))
1175
+
1176
+ ## [2.12.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.0...v2.12.1) (2022-12-24)
1177
+
1178
+
1179
+ ### Miscellaneous Chores
1180
+
1181
+ * Bump android-driver ([1527434](https://github.com/appium/appium-uiautomator2-driver/commit/152743477f7968724598b5b80dd06cf01f30d21f))
1182
+
1183
+ ## [2.12.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.11.1...v2.12.0) (2022-12-08)
1184
+
1185
+
1186
+ ### Features
1187
+
1188
+ * Add forceAppLaunch capability ([#569](https://github.com/appium/appium-uiautomator2-driver/issues/569)) ([8af938e](https://github.com/appium/appium-uiautomator2-driver/commit/8af938e361ed7f2821756fd3466ea97761714104))
1189
+
1190
+ ## [2.11.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.11.0...v2.11.1) (2022-12-01)
1191
+
1192
+
1193
+ ### Miscellaneous Chores
1194
+
1195
+ * update releaserc ([#566](https://github.com/appium/appium-uiautomator2-driver/issues/566)) ([ffb04bd](https://github.com/appium/appium-uiautomator2-driver/commit/ffb04bda088bb9b21e4b179c985245c1c72da577))
1196
+
1197
+ # [2.11.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.10.2...v2.11.0) (2022-11-30)
1198
+
1199
+
1200
+ ### Features
1201
+
1202
+ * Add support of updated changePermissions args ([#565](https://github.com/appium/appium-uiautomator2-driver/issues/565)) ([df51a96](https://github.com/appium/appium-uiautomator2-driver/commit/df51a9610c4c33f99feaabe29793003063a26f95))
1203
+
1204
+ ## [2.10.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.10.1...v2.10.2) (2022-11-06)