@limrun/appium-xcuitest-driver 10.4.3-lim.1
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.
- package/CHANGELOG.md +2600 -0
- package/LICENSE +201 -0
- package/README.md +55 -0
- package/build/index.d.ts +5 -0
- package/build/index.js +41 -0
- package/build/lib/app-infos-cache.d.ts +62 -0
- package/build/lib/app-infos-cache.d.ts.map +1 -0
- package/build/lib/app-infos-cache.js +180 -0
- package/build/lib/app-infos-cache.js.map +1 -0
- package/build/lib/app-utils.d.ts +89 -0
- package/build/lib/app-utils.d.ts.map +1 -0
- package/build/lib/app-utils.js +657 -0
- package/build/lib/app-utils.js.map +1 -0
- package/build/lib/commands/active-app-info.d.ts +9 -0
- package/build/lib/commands/active-app-info.d.ts.map +1 -0
- package/build/lib/commands/active-app-info.js +14 -0
- package/build/lib/commands/active-app-info.js.map +1 -0
- package/build/lib/commands/advanced-battery-types.d.ts +444 -0
- package/build/lib/commands/advanced-battery-types.d.ts.map +1 -0
- package/build/lib/commands/advanced-battery-types.js +8 -0
- package/build/lib/commands/advanced-battery-types.js.map +1 -0
- package/build/lib/commands/alert.d.ts +45 -0
- package/build/lib/commands/alert.d.ts.map +1 -0
- package/build/lib/commands/alert.js +87 -0
- package/build/lib/commands/alert.js.map +1 -0
- package/build/lib/commands/app-management.d.ts +153 -0
- package/build/lib/commands/app-management.d.ts.map +1 -0
- package/build/lib/commands/app-management.js +323 -0
- package/build/lib/commands/app-management.js.map +1 -0
- package/build/lib/commands/app-strings.d.ts +16 -0
- package/build/lib/commands/app-strings.d.ts.map +1 -0
- package/build/lib/commands/app-strings.js +30 -0
- package/build/lib/commands/app-strings.js.map +1 -0
- package/build/lib/commands/appearance.d.ts +22 -0
- package/build/lib/commands/appearance.d.ts.map +1 -0
- package/build/lib/commands/appearance.js +74 -0
- package/build/lib/commands/appearance.js.map +1 -0
- package/build/lib/commands/audit.d.ts +43 -0
- package/build/lib/commands/audit.d.ts.map +1 -0
- package/build/lib/commands/audit.js +31 -0
- package/build/lib/commands/audit.js.map +1 -0
- package/build/lib/commands/battery.d.ts +13 -0
- package/build/lib/commands/battery.d.ts.map +1 -0
- package/build/lib/commands/battery.js +49 -0
- package/build/lib/commands/battery.js.map +1 -0
- package/build/lib/commands/bidi/constants.d.ts +6 -0
- package/build/lib/commands/bidi/constants.d.ts.map +1 -0
- package/build/lib/commands/bidi/constants.js +10 -0
- package/build/lib/commands/bidi/constants.js.map +1 -0
- package/build/lib/commands/bidi/models.d.ts +9 -0
- package/build/lib/commands/bidi/models.d.ts.map +1 -0
- package/build/lib/commands/bidi/models.js +54 -0
- package/build/lib/commands/bidi/models.js.map +1 -0
- package/build/lib/commands/bidi/types.d.ts +26 -0
- package/build/lib/commands/bidi/types.d.ts.map +1 -0
- package/build/lib/commands/bidi/types.js +4 -0
- package/build/lib/commands/bidi/types.js.map +1 -0
- package/build/lib/commands/biometric.d.ts +32 -0
- package/build/lib/commands/biometric.d.ts.map +1 -0
- package/build/lib/commands/biometric.js +54 -0
- package/build/lib/commands/biometric.js.map +1 -0
- package/build/lib/commands/certificate.d.ts +50 -0
- package/build/lib/commands/certificate.d.ts.map +1 -0
- package/build/lib/commands/certificate.js +454 -0
- package/build/lib/commands/certificate.js.map +1 -0
- package/build/lib/commands/clipboard.d.ts +21 -0
- package/build/lib/commands/clipboard.d.ts.map +1 -0
- package/build/lib/commands/clipboard.js +36 -0
- package/build/lib/commands/clipboard.js.map +1 -0
- package/build/lib/commands/condition.d.ts +102 -0
- package/build/lib/commands/condition.d.ts.map +1 -0
- package/build/lib/commands/condition.js +146 -0
- package/build/lib/commands/condition.js.map +1 -0
- package/build/lib/commands/content-size.d.ts +30 -0
- package/build/lib/commands/content-size.d.ts.map +1 -0
- package/build/lib/commands/content-size.js +67 -0
- package/build/lib/commands/content-size.js.map +1 -0
- package/build/lib/commands/context.d.ts +191 -0
- package/build/lib/commands/context.d.ts.map +1 -0
- package/build/lib/commands/context.js +625 -0
- package/build/lib/commands/context.js.map +1 -0
- package/build/lib/commands/deviceInfo.d.ts +12 -0
- package/build/lib/commands/deviceInfo.d.ts.map +1 -0
- package/build/lib/commands/deviceInfo.js +25 -0
- package/build/lib/commands/deviceInfo.js.map +1 -0
- package/build/lib/commands/element.d.ts +108 -0
- package/build/lib/commands/element.d.ts.map +1 -0
- package/build/lib/commands/element.js +395 -0
- package/build/lib/commands/element.js.map +1 -0
- package/build/lib/commands/enum.d.ts +105 -0
- package/build/lib/commands/enum.d.ts.map +1 -0
- package/build/lib/commands/enum.js +113 -0
- package/build/lib/commands/enum.js.map +1 -0
- package/build/lib/commands/execute.d.ts +33 -0
- package/build/lib/commands/execute.d.ts.map +1 -0
- package/build/lib/commands/execute.js +142 -0
- package/build/lib/commands/execute.js.map +1 -0
- package/build/lib/commands/file-movement.d.ts +90 -0
- package/build/lib/commands/file-movement.d.ts.map +1 -0
- package/build/lib/commands/file-movement.js +477 -0
- package/build/lib/commands/file-movement.js.map +1 -0
- package/build/lib/commands/find.d.ts +21 -0
- package/build/lib/commands/find.d.ts.map +1 -0
- package/build/lib/commands/find.js +199 -0
- package/build/lib/commands/find.js.map +1 -0
- package/build/lib/commands/general.d.ts +137 -0
- package/build/lib/commands/general.d.ts.map +1 -0
- package/build/lib/commands/general.js +270 -0
- package/build/lib/commands/general.js.map +1 -0
- package/build/lib/commands/geolocation.d.ts +57 -0
- package/build/lib/commands/geolocation.d.ts.map +1 -0
- package/build/lib/commands/geolocation.js +58 -0
- package/build/lib/commands/geolocation.js.map +1 -0
- package/build/lib/commands/gesture.d.ts +283 -0
- package/build/lib/commands/gesture.d.ts.map +1 -0
- package/build/lib/commands/gesture.js +565 -0
- package/build/lib/commands/gesture.js.map +1 -0
- package/build/lib/commands/hid-event.d.ts +2773 -0
- package/build/lib/commands/hid-event.d.ts.map +1 -0
- package/build/lib/commands/hid-event.js +1633 -0
- package/build/lib/commands/hid-event.js.map +1 -0
- package/build/lib/commands/increase-contrast.d.ts +24 -0
- package/build/lib/commands/increase-contrast.d.ts.map +1 -0
- package/build/lib/commands/increase-contrast.js +49 -0
- package/build/lib/commands/increase-contrast.js.map +1 -0
- package/build/lib/commands/iohid.d.ts +1372 -0
- package/build/lib/commands/iohid.d.ts.map +1 -0
- package/build/lib/commands/iohid.js +63 -0
- package/build/lib/commands/iohid.js.map +1 -0
- package/build/lib/commands/keyboard.d.ts +32 -0
- package/build/lib/commands/keyboard.d.ts.map +1 -0
- package/build/lib/commands/keyboard.js +67 -0
- package/build/lib/commands/keyboard.js.map +1 -0
- package/build/lib/commands/keychains.d.ts +10 -0
- package/build/lib/commands/keychains.d.ts.map +1 -0
- package/build/lib/commands/keychains.js +22 -0
- package/build/lib/commands/keychains.js.map +1 -0
- package/build/lib/commands/localization.d.ts +17 -0
- package/build/lib/commands/localization.d.ts.map +1 -0
- package/build/lib/commands/localization.js +34 -0
- package/build/lib/commands/localization.js.map +1 -0
- package/build/lib/commands/location.d.ts +40 -0
- package/build/lib/commands/location.d.ts.map +1 -0
- package/build/lib/commands/location.js +121 -0
- package/build/lib/commands/location.js.map +1 -0
- package/build/lib/commands/lock.d.ts +23 -0
- package/build/lib/commands/lock.d.ts.map +1 -0
- package/build/lib/commands/lock.js +49 -0
- package/build/lib/commands/lock.js.map +1 -0
- package/build/lib/commands/log.d.ts +68 -0
- package/build/lib/commands/log.d.ts.map +1 -0
- package/build/lib/commands/log.js +287 -0
- package/build/lib/commands/log.js.map +1 -0
- package/build/lib/commands/memory.d.ts +11 -0
- package/build/lib/commands/memory.d.ts.map +1 -0
- package/build/lib/commands/memory.js +49 -0
- package/build/lib/commands/memory.js.map +1 -0
- package/build/lib/commands/navigation.d.ts +44 -0
- package/build/lib/commands/navigation.d.ts.map +1 -0
- package/build/lib/commands/navigation.js +121 -0
- package/build/lib/commands/navigation.js.map +1 -0
- package/build/lib/commands/notifications.d.ts +28 -0
- package/build/lib/commands/notifications.d.ts.map +1 -0
- package/build/lib/commands/notifications.js +64 -0
- package/build/lib/commands/notifications.js.map +1 -0
- package/build/lib/commands/pasteboard.d.ts +23 -0
- package/build/lib/commands/pasteboard.d.ts.map +1 -0
- package/build/lib/commands/pasteboard.js +43 -0
- package/build/lib/commands/pasteboard.js.map +1 -0
- package/build/lib/commands/pcap.d.ts +54 -0
- package/build/lib/commands/pcap.d.ts.map +1 -0
- package/build/lib/commands/pcap.js +149 -0
- package/build/lib/commands/pcap.js.map +1 -0
- package/build/lib/commands/performance.d.ts +85 -0
- package/build/lib/commands/performance.d.ts.map +1 -0
- package/build/lib/commands/performance.js +331 -0
- package/build/lib/commands/performance.js.map +1 -0
- package/build/lib/commands/permissions.d.ts +36 -0
- package/build/lib/commands/permissions.d.ts.map +1 -0
- package/build/lib/commands/permissions.js +80 -0
- package/build/lib/commands/permissions.js.map +1 -0
- package/build/lib/commands/proxy-helper.d.ts +15 -0
- package/build/lib/commands/proxy-helper.d.ts.map +1 -0
- package/build/lib/commands/proxy-helper.js +117 -0
- package/build/lib/commands/proxy-helper.js.map +1 -0
- package/build/lib/commands/record-audio.d.ts +69 -0
- package/build/lib/commands/record-audio.d.ts.map +1 -0
- package/build/lib/commands/record-audio.js +228 -0
- package/build/lib/commands/record-audio.js.map +1 -0
- package/build/lib/commands/recordscreen.d.ts +89 -0
- package/build/lib/commands/recordscreen.d.ts.map +1 -0
- package/build/lib/commands/recordscreen.js +326 -0
- package/build/lib/commands/recordscreen.js.map +1 -0
- package/build/lib/commands/screenshots.d.ts +16 -0
- package/build/lib/commands/screenshots.d.ts.map +1 -0
- package/build/lib/commands/screenshots.js +129 -0
- package/build/lib/commands/screenshots.js.map +1 -0
- package/build/lib/commands/simctl.d.ts +27 -0
- package/build/lib/commands/simctl.d.ts.map +1 -0
- package/build/lib/commands/simctl.js +65 -0
- package/build/lib/commands/simctl.js.map +1 -0
- package/build/lib/commands/source.d.ts +16 -0
- package/build/lib/commands/source.d.ts.map +1 -0
- package/build/lib/commands/source.js +128 -0
- package/build/lib/commands/source.js.map +1 -0
- package/build/lib/commands/timeouts.d.ts +53 -0
- package/build/lib/commands/timeouts.d.ts.map +1 -0
- package/build/lib/commands/timeouts.js +71 -0
- package/build/lib/commands/timeouts.js.map +1 -0
- package/build/lib/commands/types.d.ts +539 -0
- package/build/lib/commands/types.d.ts.map +1 -0
- package/build/lib/commands/types.js +3 -0
- package/build/lib/commands/types.js.map +1 -0
- package/build/lib/commands/web.d.ts +297 -0
- package/build/lib/commands/web.d.ts.map +1 -0
- package/build/lib/commands/web.js +1029 -0
- package/build/lib/commands/web.js.map +1 -0
- package/build/lib/commands/xctest-record-screen.d.ts +92 -0
- package/build/lib/commands/xctest-record-screen.d.ts.map +1 -0
- package/build/lib/commands/xctest-record-screen.js +193 -0
- package/build/lib/commands/xctest-record-screen.js.map +1 -0
- package/build/lib/commands/xctest.d.ts +71 -0
- package/build/lib/commands/xctest.d.ts.map +1 -0
- package/build/lib/commands/xctest.js +257 -0
- package/build/lib/commands/xctest.js.map +1 -0
- package/build/lib/css-converter.d.ts +10 -0
- package/build/lib/css-converter.d.ts.map +1 -0
- package/build/lib/css-converter.js +258 -0
- package/build/lib/css-converter.js.map +1 -0
- package/build/lib/desired-caps.d.ts +506 -0
- package/build/lib/desired-caps.d.ts.map +1 -0
- package/build/lib/desired-caps.js +400 -0
- package/build/lib/desired-caps.js.map +1 -0
- package/build/lib/device-connections-factory.d.ts +13 -0
- package/build/lib/device-connections-factory.d.ts.map +1 -0
- package/build/lib/device-connections-factory.js +244 -0
- package/build/lib/device-connections-factory.js.map +1 -0
- package/build/lib/device-log/helpers.d.ts +10 -0
- package/build/lib/device-log/helpers.d.ts.map +1 -0
- package/build/lib/device-log/helpers.js +37 -0
- package/build/lib/device-log/helpers.js.map +1 -0
- package/build/lib/device-log/ios-crash-log.d.ts +34 -0
- package/build/lib/device-log/ios-crash-log.d.ts.map +1 -0
- package/build/lib/device-log/ios-crash-log.js +141 -0
- package/build/lib/device-log/ios-crash-log.js.map +1 -0
- package/build/lib/device-log/ios-device-log.d.ts +19 -0
- package/build/lib/device-log/ios-device-log.d.ts.map +1 -0
- package/build/lib/device-log/ios-device-log.js +42 -0
- package/build/lib/device-log/ios-device-log.js.map +1 -0
- package/build/lib/device-log/ios-log.d.ts +24 -0
- package/build/lib/device-log/ios-log.d.ts.map +1 -0
- package/build/lib/device-log/ios-log.js +50 -0
- package/build/lib/device-log/ios-log.js.map +1 -0
- package/build/lib/device-log/ios-performance-log.d.ts +18 -0
- package/build/lib/device-log/ios-performance-log.d.ts.map +1 -0
- package/build/lib/device-log/ios-performance-log.js +43 -0
- package/build/lib/device-log/ios-performance-log.js.map +1 -0
- package/build/lib/device-log/ios-simulator-log.d.ts +38 -0
- package/build/lib/device-log/ios-simulator-log.d.ts.map +1 -0
- package/build/lib/device-log/ios-simulator-log.js +184 -0
- package/build/lib/device-log/ios-simulator-log.js.map +1 -0
- package/build/lib/device-log/line-consuming-log.d.ts +9 -0
- package/build/lib/device-log/line-consuming-log.d.ts.map +1 -0
- package/build/lib/device-log/line-consuming-log.js +16 -0
- package/build/lib/device-log/line-consuming-log.js.map +1 -0
- package/build/lib/device-log/safari-console-log.d.ts +67 -0
- package/build/lib/device-log/safari-console-log.d.ts.map +1 -0
- package/build/lib/device-log/safari-console-log.js +81 -0
- package/build/lib/device-log/safari-console-log.js.map +1 -0
- package/build/lib/device-log/safari-network-log.d.ts +75 -0
- package/build/lib/device-log/safari-network-log.d.ts.map +1 -0
- package/build/lib/device-log/safari-network-log.js +47 -0
- package/build/lib/device-log/safari-network-log.js.map +1 -0
- package/build/lib/doctor/checks.d.ts +3 -0
- package/build/lib/doctor/checks.d.ts.map +1 -0
- package/build/lib/doctor/checks.js +39 -0
- package/build/lib/doctor/checks.js.map +1 -0
- package/build/lib/doctor/optional-checks.d.ts +46 -0
- package/build/lib/doctor/optional-checks.d.ts.map +1 -0
- package/build/lib/doctor/optional-checks.js +129 -0
- package/build/lib/doctor/optional-checks.js.map +1 -0
- package/build/lib/doctor/required-checks.d.ts +42 -0
- package/build/lib/doctor/required-checks.d.ts.map +1 -0
- package/build/lib/doctor/required-checks.js +94 -0
- package/build/lib/doctor/required-checks.js.map +1 -0
- package/build/lib/doctor/utils.d.ts +8 -0
- package/build/lib/doctor/utils.d.ts.map +1 -0
- package/build/lib/doctor/utils.js +21 -0
- package/build/lib/doctor/utils.js.map +1 -0
- package/build/lib/driver.d.ts +2429 -0
- package/build/lib/driver.d.ts.map +1 -0
- package/build/lib/driver.js +1967 -0
- package/build/lib/driver.js.map +1 -0
- package/build/lib/execute-method-map.d.ts +552 -0
- package/build/lib/execute-method-map.d.ts.map +1 -0
- package/build/lib/execute-method-map.js +586 -0
- package/build/lib/execute-method-map.js.map +1 -0
- package/build/lib/ios-fs-helpers.d.ts +75 -0
- package/build/lib/ios-fs-helpers.d.ts.map +1 -0
- package/build/lib/ios-fs-helpers.js +370 -0
- package/build/lib/ios-fs-helpers.js.map +1 -0
- package/build/lib/ios-generic-simulators.d.ts +6 -0
- package/build/lib/ios-generic-simulators.d.ts.map +1 -0
- package/build/lib/ios-generic-simulators.js +14 -0
- package/build/lib/ios-generic-simulators.js.map +1 -0
- package/build/lib/logger.d.ts +3 -0
- package/build/lib/logger.d.ts.map +1 -0
- package/build/lib/logger.js +6 -0
- package/build/lib/logger.js.map +1 -0
- package/build/lib/method-map.d.ts +229 -0
- package/build/lib/method-map.d.ts.map +1 -0
- package/build/lib/method-map.js +200 -0
- package/build/lib/method-map.js.map +1 -0
- package/build/lib/real-device-clients/base-device-client.d.ts +22 -0
- package/build/lib/real-device-clients/base-device-client.d.ts.map +1 -0
- package/build/lib/real-device-clients/base-device-client.js +14 -0
- package/build/lib/real-device-clients/base-device-client.js.map +1 -0
- package/build/lib/real-device-clients/py-ios-device-client.d.ts +21 -0
- package/build/lib/real-device-clients/py-ios-device-client.d.ts.map +1 -0
- package/build/lib/real-device-clients/py-ios-device-client.js +125 -0
- package/build/lib/real-device-clients/py-ios-device-client.js.map +1 -0
- package/build/lib/real-device-management.d.ts +53 -0
- package/build/lib/real-device-management.d.ts.map +1 -0
- package/build/lib/real-device-management.js +128 -0
- package/build/lib/real-device-management.js.map +1 -0
- package/build/lib/real-device.d.ts +112 -0
- package/build/lib/real-device.d.ts.map +1 -0
- package/build/lib/real-device.js +352 -0
- package/build/lib/real-device.js.map +1 -0
- package/build/lib/simulator-management.d.ts +96 -0
- package/build/lib/simulator-management.d.ts.map +1 -0
- package/build/lib/simulator-management.js +278 -0
- package/build/lib/simulator-management.js.map +1 -0
- package/build/lib/stubs.d.ts +3 -0
- package/build/lib/stubs.d.ts.map +1 -0
- package/build/lib/stubs.js +3 -0
- package/build/lib/stubs.js.map +1 -0
- package/build/lib/types.d.ts +31 -0
- package/build/lib/types.d.ts.map +1 -0
- package/build/lib/types.js +3 -0
- package/build/lib/types.js.map +1 -0
- package/build/lib/utils.d.ts +191 -0
- package/build/lib/utils.d.ts.map +1 -0
- package/build/lib/utils.js +549 -0
- package/build/lib/utils.js.map +1 -0
- package/build/lib/xcrun.d.ts +3 -0
- package/build/lib/xcrun.d.ts.map +1 -0
- package/build/lib/xcrun.js +17 -0
- package/build/lib/xcrun.js.map +1 -0
- package/index.js +7 -0
- package/lib/app-infos-cache.js +187 -0
- package/lib/app-utils.js +710 -0
- package/lib/commands/active-app-info.js +12 -0
- package/lib/commands/advanced-battery-types.ts +454 -0
- package/lib/commands/alert.js +88 -0
- package/lib/commands/app-management.js +346 -0
- package/lib/commands/app-strings.js +30 -0
- package/lib/commands/appearance.js +71 -0
- package/lib/commands/audit.js +31 -0
- package/lib/commands/battery.js +45 -0
- package/lib/commands/bidi/constants.ts +6 -0
- package/lib/commands/bidi/models.ts +55 -0
- package/lib/commands/bidi/types.ts +31 -0
- package/lib/commands/biometric.js +53 -0
- package/lib/commands/certificate.js +497 -0
- package/lib/commands/clipboard.js +35 -0
- package/lib/commands/condition.js +155 -0
- package/lib/commands/content-size.js +68 -0
- package/lib/commands/context.js +705 -0
- package/lib/commands/deviceInfo.js +27 -0
- package/lib/commands/element.js +423 -0
- package/lib/commands/enum.ts +108 -0
- package/lib/commands/execute.js +153 -0
- package/lib/commands/file-movement.js +510 -0
- package/lib/commands/find.js +205 -0
- package/lib/commands/general.js +278 -0
- package/lib/commands/geolocation.js +56 -0
- package/lib/commands/gesture.js +596 -0
- package/lib/commands/hid-event.ts +1634 -0
- package/lib/commands/increase-contrast.js +50 -0
- package/lib/commands/iohid.js +64 -0
- package/lib/commands/keyboard.js +62 -0
- package/lib/commands/keychains.js +18 -0
- package/lib/commands/localization.js +30 -0
- package/lib/commands/location.js +131 -0
- package/lib/commands/lock.js +46 -0
- package/lib/commands/log.js +327 -0
- package/lib/commands/memory.js +51 -0
- package/lib/commands/navigation.js +125 -0
- package/lib/commands/notifications.js +66 -0
- package/lib/commands/pasteboard.js +42 -0
- package/lib/commands/pcap.js +168 -0
- package/lib/commands/performance.js +392 -0
- package/lib/commands/permissions.js +85 -0
- package/lib/commands/proxy-helper.js +122 -0
- package/lib/commands/record-audio.js +264 -0
- package/lib/commands/recordscreen.js +391 -0
- package/lib/commands/screenshots.js +137 -0
- package/lib/commands/simctl.js +71 -0
- package/lib/commands/source.js +131 -0
- package/lib/commands/timeouts.js +68 -0
- package/lib/commands/types.ts +648 -0
- package/lib/commands/web.js +1113 -0
- package/lib/commands/xctest-record-screen.js +204 -0
- package/lib/commands/xctest.js +285 -0
- package/lib/css-converter.js +311 -0
- package/lib/desired-caps.js +396 -0
- package/lib/device-connections-factory.js +269 -0
- package/lib/device-log/helpers.ts +40 -0
- package/lib/device-log/ios-crash-log.ts +166 -0
- package/lib/device-log/ios-device-log.ts +51 -0
- package/lib/device-log/ios-log.ts +70 -0
- package/lib/device-log/ios-performance-log.ts +50 -0
- package/lib/device-log/ios-simulator-log.ts +202 -0
- package/lib/device-log/line-consuming-log.ts +16 -0
- package/lib/device-log/safari-console-log.ts +117 -0
- package/lib/device-log/safari-network-log.ts +120 -0
- package/lib/doctor/checks.ts +3 -0
- package/lib/doctor/optional-checks.ts +173 -0
- package/lib/doctor/required-checks.ts +120 -0
- package/lib/doctor/utils.ts +18 -0
- package/lib/driver.js +2316 -0
- package/lib/execute-method-map.ts +585 -0
- package/lib/ios-fs-helpers.js +355 -0
- package/lib/ios-generic-simulators.js +11 -0
- package/lib/logger.js +5 -0
- package/lib/method-map.js +196 -0
- package/lib/real-device-clients/base-device-client.ts +34 -0
- package/lib/real-device-clients/py-ios-device-client.ts +149 -0
- package/lib/real-device-management.js +133 -0
- package/lib/real-device.js +347 -0
- package/lib/simulator-management.js +324 -0
- package/lib/stubs.ts +3 -0
- package/lib/types.ts +33 -0
- package/lib/utils.js +551 -0
- package/lib/xcrun.js +16 -0
- package/package.json +175 -0
- package/scripts/build-docs.js +56 -0
- package/scripts/build-wda.js +42 -0
- package/scripts/download-wda-sim.mjs +68 -0
- package/scripts/image-mounter.mjs +239 -0
- package/scripts/open-wda.mjs +15 -0
- package/scripts/tunnel-creation.mjs +359 -0
- package/scripts/utils.js +16 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,2600 @@
|
|
|
1
|
+
## [10.4.3](https://github.com/appium/appium-xcuitest-driver/compare/v10.4.2...v10.4.3) (2025-11-03)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* update webdriveragent to 10.2.1 ([#2645](https://github.com/appium/appium-xcuitest-driver/issues/2645)) ([899842a](https://github.com/appium/appium-xcuitest-driver/commit/899842a7ceb9a4a66f4c25be36fbc3408fb28e95))
|
|
6
|
+
|
|
7
|
+
## [10.4.2](https://github.com/appium/appium-xcuitest-driver/compare/v10.4.1...v10.4.2) (2025-11-03)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Use devicectl while listing available device udids ([#2648](https://github.com/appium/appium-xcuitest-driver/issues/2648)) ([5953a97](https://github.com/appium/appium-xcuitest-driver/commit/5953a979ef7f2b15b415ddb819ccb4bfd26680dd))
|
|
12
|
+
|
|
13
|
+
## [10.4.1](https://github.com/appium/appium-xcuitest-driver/compare/v10.4.0...v10.4.1) (2025-11-03)
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Chores
|
|
16
|
+
|
|
17
|
+
* Ditch unused cookie-related functions ([#2647](https://github.com/appium/appium-xcuitest-driver/issues/2647)) ([f068585](https://github.com/appium/appium-xcuitest-driver/commit/f0685855a9014b6ee7d4281e77fe67563848ddd0))
|
|
18
|
+
|
|
19
|
+
## [10.4.0](https://github.com/appium/appium-xcuitest-driver/compare/v10.3.0...v10.4.0) (2025-11-02)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* Make command exports more straightforward ([#2646](https://github.com/appium/appium-xcuitest-driver/issues/2646)) ([254bc04](https://github.com/appium/appium-xcuitest-driver/commit/254bc0468bba9cee4437286495ba7c0273ddd16e))
|
|
24
|
+
|
|
25
|
+
## [10.3.0](https://github.com/appium/appium-xcuitest-driver/compare/v10.2.2...v10.3.0) (2025-11-02)
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* Switch to devicectl module usage ([#2644](https://github.com/appium/appium-xcuitest-driver/issues/2644)) ([7e7e642](https://github.com/appium/appium-xcuitest-driver/commit/7e7e64263a225e90bf48d1e14b7fd961acba9ede))
|
|
30
|
+
|
|
31
|
+
## [10.2.2](https://github.com/appium/appium-xcuitest-driver/compare/v10.2.1...v10.2.2) (2025-10-17)
|
|
32
|
+
|
|
33
|
+
### Miscellaneous Chores
|
|
34
|
+
|
|
35
|
+
* **deps-dev:** bump semantic-release from 24.2.9 to 25.0.0 ([#2642](https://github.com/appium/appium-xcuitest-driver/issues/2642)) ([059aabc](https://github.com/appium/appium-xcuitest-driver/commit/059aabc38d33cebd448b314320318be09228317e))
|
|
36
|
+
|
|
37
|
+
## [10.2.1](https://github.com/appium/appium-xcuitest-driver/compare/v10.2.0...v10.2.1) (2025-10-10)
|
|
38
|
+
|
|
39
|
+
### Miscellaneous Chores
|
|
40
|
+
|
|
41
|
+
* Migrate doctor checks to typescript ([#2640](https://github.com/appium/appium-xcuitest-driver/issues/2640)) ([1bd49a7](https://github.com/appium/appium-xcuitest-driver/commit/1bd49a74a2e7789efd2cc52527b4559e9c91aa64))
|
|
42
|
+
|
|
43
|
+
## [10.2.0](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.7...v10.2.0) (2025-10-10)
|
|
44
|
+
|
|
45
|
+
### Features
|
|
46
|
+
|
|
47
|
+
* Add optional simulator doctor check ([#2639](https://github.com/appium/appium-xcuitest-driver/issues/2639)) ([201d451](https://github.com/appium/appium-xcuitest-driver/commit/201d4519d051546dfd3b9f94f87e19a7914b7932))
|
|
48
|
+
|
|
49
|
+
## [10.1.7](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.6...v10.1.7) (2025-10-10)
|
|
50
|
+
|
|
51
|
+
### Miscellaneous Chores
|
|
52
|
+
|
|
53
|
+
* Improve some doctor messaging ([#2638](https://github.com/appium/appium-xcuitest-driver/issues/2638)) ([701b083](https://github.com/appium/appium-xcuitest-driver/commit/701b0839fe0cd9fa899a6fa7a1bc06a0e9dc5689))
|
|
54
|
+
|
|
55
|
+
## [10.1.6](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.5...v10.1.6) (2025-10-06)
|
|
56
|
+
|
|
57
|
+
### Miscellaneous Chores
|
|
58
|
+
|
|
59
|
+
* Migrate open-wda script to ESM ([#2637](https://github.com/appium/appium-xcuitest-driver/issues/2637)) ([f441b88](https://github.com/appium/appium-xcuitest-driver/commit/f441b88cfac77829eed4b59214ff8475bd876738))
|
|
60
|
+
|
|
61
|
+
## [10.1.5](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.4...v10.1.5) (2025-10-05)
|
|
62
|
+
|
|
63
|
+
### Miscellaneous Chores
|
|
64
|
+
|
|
65
|
+
* Update ESM script imports ([#2636](https://github.com/appium/appium-xcuitest-driver/issues/2636)) ([6cafc44](https://github.com/appium/appium-xcuitest-driver/commit/6cafc44468f0f20ce53ca2ca4c4d9b267911eb9f))
|
|
66
|
+
|
|
67
|
+
## [10.1.4](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.3...v10.1.4) (2025-10-03)
|
|
68
|
+
|
|
69
|
+
### Miscellaneous Chores
|
|
70
|
+
|
|
71
|
+
* Bump remote debugger ([#2635](https://github.com/appium/appium-xcuitest-driver/issues/2635)) ([387f2df](https://github.com/appium/appium-xcuitest-driver/commit/387f2dfdcc39ac209d126207134d9920717bc660))
|
|
72
|
+
|
|
73
|
+
## [10.1.3](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.2...v10.1.3) (2025-10-01)
|
|
74
|
+
|
|
75
|
+
### Miscellaneous Chores
|
|
76
|
+
|
|
77
|
+
* Unlock winston ([9649bd1](https://github.com/appium/appium-xcuitest-driver/commit/9649bd1de0c045813751f8f4d5eb4af0a0e1f271))
|
|
78
|
+
|
|
79
|
+
## [10.1.2](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.1...v10.1.2) (2025-09-16)
|
|
80
|
+
|
|
81
|
+
### Miscellaneous Chores
|
|
82
|
+
|
|
83
|
+
* Bump remote debugger ([#2626](https://github.com/appium/appium-xcuitest-driver/issues/2626)) ([4ef1a50](https://github.com/appium/appium-xcuitest-driver/commit/4ef1a50bdd003680b40a4529200d49c26c4286fc))
|
|
84
|
+
|
|
85
|
+
## [10.1.1](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.0...v10.1.1) (2025-09-15)
|
|
86
|
+
|
|
87
|
+
### Miscellaneous Chores
|
|
88
|
+
|
|
89
|
+
* **deps-dev:** remove type-fest dependency ([#2624](https://github.com/appium/appium-xcuitest-driver/issues/2624)) ([8dd7dab](https://github.com/appium/appium-xcuitest-driver/commit/8dd7dabd0e58d815e7a8c47f27aa1e86a2ca856a))
|
|
90
|
+
* **deps:** bump appium-ios-remotexpc from 0.3.3 to 0.x ([#2625](https://github.com/appium/appium-xcuitest-driver/issues/2625)) ([555262b](https://github.com/appium/appium-xcuitest-driver/commit/555262b7634620bf6465d186c5a3c68f5b054992))
|
|
91
|
+
|
|
92
|
+
## [10.1.0](https://github.com/appium/appium-xcuitest-driver/compare/v10.0.6...v10.1.0) (2025-09-08)
|
|
93
|
+
|
|
94
|
+
### Features
|
|
95
|
+
|
|
96
|
+
* Bump remote debugger ([#2621](https://github.com/appium/appium-xcuitest-driver/issues/2621)) ([04d48ab](https://github.com/appium/appium-xcuitest-driver/commit/04d48ab2e37b089db3d8834d856dbf4193e1bdb1))
|
|
97
|
+
|
|
98
|
+
## [10.0.6](https://github.com/appium/appium-xcuitest-driver/compare/v10.0.5...v10.0.6) (2025-09-05)
|
|
99
|
+
|
|
100
|
+
### Bug Fixes
|
|
101
|
+
|
|
102
|
+
* add TypeScript declarations to npm package files ([#2620](https://github.com/appium/appium-xcuitest-driver/issues/2620)) ([15c0798](https://github.com/appium/appium-xcuitest-driver/commit/15c079840ce2c91552bc3110d49a0f9bf12c406d))
|
|
103
|
+
|
|
104
|
+
## [10.0.5](https://github.com/appium/appium-xcuitest-driver/compare/v10.0.4...v10.0.5) (2025-09-03)
|
|
105
|
+
|
|
106
|
+
### Miscellaneous Chores
|
|
107
|
+
|
|
108
|
+
* Bump WDA ([#2619](https://github.com/appium/appium-xcuitest-driver/issues/2619)) ([280b1bc](https://github.com/appium/appium-xcuitest-driver/commit/280b1bc6bb0e612eb08c3242648c83bb42e38973))
|
|
109
|
+
|
|
110
|
+
## [10.0.4](https://github.com/appium/appium-xcuitest-driver/compare/v10.0.3...v10.0.4) (2025-08-29)
|
|
111
|
+
|
|
112
|
+
### Miscellaneous Chores
|
|
113
|
+
|
|
114
|
+
* Bump remote debugger ([#2618](https://github.com/appium/appium-xcuitest-driver/issues/2618)) ([5167d1b](https://github.com/appium/appium-xcuitest-driver/commit/5167d1bc1d2baed85dd2564aa24a28cf00bb1a0f))
|
|
115
|
+
|
|
116
|
+
## [10.0.3](https://github.com/appium/appium-xcuitest-driver/compare/v10.0.2...v10.0.3) (2025-08-27)
|
|
117
|
+
|
|
118
|
+
### Miscellaneous Chores
|
|
119
|
+
|
|
120
|
+
* bump appium-ios-remotexpc to publish with latest ([#2616](https://github.com/appium/appium-xcuitest-driver/issues/2616)) ([67487f5](https://github.com/appium/appium-xcuitest-driver/commit/67487f50a65a17f9ccebe01091441dfdcf95ff32))
|
|
121
|
+
|
|
122
|
+
## [10.0.2](https://github.com/appium/appium-xcuitest-driver/compare/v10.0.1...v10.0.2) (2025-08-24)
|
|
123
|
+
|
|
124
|
+
### Miscellaneous Chores
|
|
125
|
+
|
|
126
|
+
* **deps:** bump lru-cache from 10.4.3 to 11.1.0 ([#2539](https://github.com/appium/appium-xcuitest-driver/issues/2539)) ([ed46fbd](https://github.com/appium/appium-xcuitest-driver/commit/ed46fbdc975c08998cd41689f8b886cf3158561e))
|
|
127
|
+
|
|
128
|
+
## [10.0.1](https://github.com/appium/appium-xcuitest-driver/compare/v10.0.0...v10.0.1) (2025-08-23)
|
|
129
|
+
|
|
130
|
+
### Miscellaneous Chores
|
|
131
|
+
|
|
132
|
+
* **deps-dev:** bump chai from 5.3.2 to 6.0.0 ([#2612](https://github.com/appium/appium-xcuitest-driver/issues/2612)) ([66db332](https://github.com/appium/appium-xcuitest-driver/commit/66db332bca5f16ca68bbfc6ced2dcd72c9c51d1a))
|
|
133
|
+
|
|
134
|
+
## [10.0.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.10.5...v10.0.0) (2025-08-19)
|
|
135
|
+
|
|
136
|
+
### ⚠ BREAKING CHANGES
|
|
137
|
+
|
|
138
|
+
* Required Node.js version has been bumped to ^20.19.0 || ^22.12.0 || >=24.0.0
|
|
139
|
+
* Required npm version has been bumped to >=10
|
|
140
|
+
* Required Appium server version has been bumped to >=3.0.0-rc.2
|
|
141
|
+
|
|
142
|
+
### Features
|
|
143
|
+
|
|
144
|
+
* Update server compatibility for Appium 3 ([#2590](https://github.com/appium/appium-xcuitest-driver/issues/2590)) ([313578a](https://github.com/appium/appium-xcuitest-driver/commit/313578ac565d54b402ade9fd542f6138ac928594))
|
|
145
|
+
|
|
146
|
+
## [9.10.5](https://github.com/appium/appium-xcuitest-driver/compare/v9.10.4...v9.10.5) (2025-08-17)
|
|
147
|
+
|
|
148
|
+
### Miscellaneous Chores
|
|
149
|
+
|
|
150
|
+
* drop rimraf deps from dev deps as no references ([#2607](https://github.com/appium/appium-xcuitest-driver/issues/2607)) ([0dc17bd](https://github.com/appium/appium-xcuitest-driver/commit/0dc17bd86e6fafdcb76aeee44d64388ea6ab6d58))
|
|
151
|
+
|
|
152
|
+
## [9.10.4](https://github.com/appium/appium-xcuitest-driver/compare/v9.10.3...v9.10.4) (2025-08-06)
|
|
153
|
+
|
|
154
|
+
### Bug Fixes
|
|
155
|
+
|
|
156
|
+
* Make sure session id is set before cleaning up socket handlers ([#2604](https://github.com/appium/appium-xcuitest-driver/issues/2604)) ([3c73836](https://github.com/appium/appium-xcuitest-driver/commit/3c738363c1c7bb6106d6b2584558a0891dd8a47c))
|
|
157
|
+
|
|
158
|
+
## [9.10.3](https://github.com/appium/appium-xcuitest-driver/compare/v9.10.2...v9.10.3) (2025-08-04)
|
|
159
|
+
|
|
160
|
+
### Miscellaneous Chores
|
|
161
|
+
|
|
162
|
+
* bump appium-ios-device to 2.9.0 ([#2603](https://github.com/appium/appium-xcuitest-driver/issues/2603)) ([69a6ca9](https://github.com/appium/appium-xcuitest-driver/commit/69a6ca95391b9dce74d8130fd818705a20ac073e))
|
|
163
|
+
|
|
164
|
+
## [9.10.2](https://github.com/appium/appium-xcuitest-driver/compare/v9.10.1...v9.10.2) (2025-08-03)
|
|
165
|
+
|
|
166
|
+
### Miscellaneous Chores
|
|
167
|
+
|
|
168
|
+
* leave wda version info or debugging ([#2602](https://github.com/appium/appium-xcuitest-driver/issues/2602)) ([b683532](https://github.com/appium/appium-xcuitest-driver/commit/b68353263eb7a8fb814a6dcbb8b532df3a40a799))
|
|
169
|
+
|
|
170
|
+
## [9.10.1](https://github.com/appium/appium-xcuitest-driver/compare/v9.10.0...v9.10.1) (2025-07-26)
|
|
171
|
+
|
|
172
|
+
### Miscellaneous Chores
|
|
173
|
+
|
|
174
|
+
* make appium-ios-remotexpc optional deps ([#2600](https://github.com/appium/appium-xcuitest-driver/issues/2600)) ([5d956cf](https://github.com/appium/appium-xcuitest-driver/commit/5d956cf1653e48d5f5dc699ae63a70c67c2499ed))
|
|
175
|
+
|
|
176
|
+
## [9.10.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.9.6...v9.10.0) (2025-07-25)
|
|
177
|
+
|
|
178
|
+
### Features
|
|
179
|
+
|
|
180
|
+
* Added support for fetching batteryInformation from shim service ([#2592](https://github.com/appium/appium-xcuitest-driver/issues/2592)) ([8dce773](https://github.com/appium/appium-xcuitest-driver/commit/8dce77333b7c7c719492c03268a50de7631d8c79)), closes [#2593](https://github.com/appium/appium-xcuitest-driver/issues/2593)
|
|
181
|
+
|
|
182
|
+
## [9.9.6](https://github.com/appium/appium-xcuitest-driver/compare/v9.9.5...v9.9.6) (2025-07-13)
|
|
183
|
+
|
|
184
|
+
### Miscellaneous Chores
|
|
185
|
+
|
|
186
|
+
* Improve atom execution timeout error message ([#2598](https://github.com/appium/appium-xcuitest-driver/issues/2598)) ([34c5ac4](https://github.com/appium/appium-xcuitest-driver/commit/34c5ac421ef333f5af298bb7723d9ac1be42d2d2))
|
|
187
|
+
|
|
188
|
+
## [9.9.5](https://github.com/appium/appium-xcuitest-driver/compare/v9.9.4...v9.9.5) (2025-07-10)
|
|
189
|
+
|
|
190
|
+
### Miscellaneous Chores
|
|
191
|
+
|
|
192
|
+
* Bump remote debugger ([#2596](https://github.com/appium/appium-xcuitest-driver/issues/2596)) ([a10b91d](https://github.com/appium/appium-xcuitest-driver/commit/a10b91dc16213527f0c7f57f247e8cb70c211b40))
|
|
193
|
+
|
|
194
|
+
## [9.9.4](https://github.com/appium/appium-xcuitest-driver/compare/v9.9.3...v9.9.4) (2025-07-04)
|
|
195
|
+
|
|
196
|
+
### Bug Fixes
|
|
197
|
+
|
|
198
|
+
* Safari network logging ([#2594](https://github.com/appium/appium-xcuitest-driver/issues/2594)) ([c2afe9e](https://github.com/appium/appium-xcuitest-driver/commit/c2afe9e773c23ac624a6a1638a2b1eecfd13e2ec))
|
|
199
|
+
|
|
200
|
+
## [9.9.3](https://github.com/appium/appium-xcuitest-driver/compare/v9.9.2...v9.9.3) (2025-07-03)
|
|
201
|
+
|
|
202
|
+
### Miscellaneous Chores
|
|
203
|
+
|
|
204
|
+
* bump remote debugger ([7540f38](https://github.com/appium/appium-xcuitest-driver/commit/7540f3875367bc7c739334a60ddbddb699112d0b))
|
|
205
|
+
|
|
206
|
+
## [9.9.2](https://github.com/appium/appium-xcuitest-driver/compare/v9.9.1...v9.9.2) (2025-07-03)
|
|
207
|
+
|
|
208
|
+
### Miscellaneous Chores
|
|
209
|
+
|
|
210
|
+
* Bump remote debugger ([edab935](https://github.com/appium/appium-xcuitest-driver/commit/edab935a5964aa4a6033e92e69db18b00493976a))
|
|
211
|
+
|
|
212
|
+
## [9.9.1](https://github.com/appium/appium-xcuitest-driver/compare/v9.9.0...v9.9.1) (2025-06-28)
|
|
213
|
+
|
|
214
|
+
### Bug Fixes
|
|
215
|
+
|
|
216
|
+
* add @ temporary fix ([#2588](https://github.com/appium/appium-xcuitest-driver/issues/2588)) ([f0ffbf6](https://github.com/appium/appium-xcuitest-driver/commit/f0ffbf6133458c3c3bcf69a1dbefc992c1ad599e))
|
|
217
|
+
|
|
218
|
+
## [9.9.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.8.1...v9.9.0) (2025-06-26)
|
|
219
|
+
|
|
220
|
+
### Features
|
|
221
|
+
|
|
222
|
+
* add download-wda-sim to download prebuilt WDA for Sim ([#2587](https://github.com/appium/appium-xcuitest-driver/issues/2587)) ([c1fb5a4](https://github.com/appium/appium-xcuitest-driver/commit/c1fb5a4df52cc8d8816c0a362916570d8236275d))
|
|
223
|
+
|
|
224
|
+
## [9.8.1](https://github.com/appium/appium-xcuitest-driver/compare/v9.8.0...v9.8.1) (2025-06-25)
|
|
225
|
+
|
|
226
|
+
### Miscellaneous Chores
|
|
227
|
+
|
|
228
|
+
* **deps-dev:** bump sinon from 20.0.0 to 21.0.0 ([#2579](https://github.com/appium/appium-xcuitest-driver/issues/2579)) ([c5100ed](https://github.com/appium/appium-xcuitest-driver/commit/c5100eda36750640c5c2e8aaf6d459b7951477ca))
|
|
229
|
+
|
|
230
|
+
## [9.8.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.7.0...v9.8.0) (2025-06-24)
|
|
231
|
+
|
|
232
|
+
### Features
|
|
233
|
+
|
|
234
|
+
* Save tunnel registry using strong box ([#2585](https://github.com/appium/appium-xcuitest-driver/issues/2585)) ([8868b1a](https://github.com/appium/appium-xcuitest-driver/commit/8868b1aba093d996d41cc47b17e4ae077457f2b7))
|
|
235
|
+
|
|
236
|
+
## [9.7.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.6.1...v9.7.0) (2025-06-15)
|
|
237
|
+
|
|
238
|
+
### Features
|
|
239
|
+
|
|
240
|
+
* add iosSyslogFile as a capability ([#2582](https://github.com/appium/appium-xcuitest-driver/issues/2582)) ([43448b4](https://github.com/appium/appium-xcuitest-driver/commit/43448b4a924a5304c947501b7e79a472a2ab6e74))
|
|
241
|
+
|
|
242
|
+
## [9.6.1](https://github.com/appium/appium-xcuitest-driver/compare/v9.6.0...v9.6.1) (2025-06-12)
|
|
243
|
+
|
|
244
|
+
### Miscellaneous Chores
|
|
245
|
+
|
|
246
|
+
* **deps-dev:** bump @types/node from 22.15.31 to 24.0.1 ([#2578](https://github.com/appium/appium-xcuitest-driver/issues/2578)) ([c0cfd0e](https://github.com/appium/appium-xcuitest-driver/commit/c0cfd0e7c427bb8eb7e2f08cb97f9488ece98577))
|
|
247
|
+
|
|
248
|
+
## [9.6.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.5.0...v9.6.0) (2025-06-10)
|
|
249
|
+
|
|
250
|
+
### Features
|
|
251
|
+
|
|
252
|
+
* Hardware Acceleration for Video Decode, Encode and Scaling ([#2559](https://github.com/appium/appium-xcuitest-driver/issues/2559)) ([d21345a](https://github.com/appium/appium-xcuitest-driver/commit/d21345a1b8e34d136033550937298c6f2e08111b))
|
|
253
|
+
|
|
254
|
+
## [9.5.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.4.0...v9.5.0) (2025-06-10)
|
|
255
|
+
|
|
256
|
+
### Features
|
|
257
|
+
|
|
258
|
+
* add documentation with min/max value ([#2576](https://github.com/appium/appium-xcuitest-driver/issues/2576)) ([c296411](https://github.com/appium/appium-xcuitest-driver/commit/c2964111ea1924baf0594e8d3f7a0aa22c22b50a))
|
|
259
|
+
* add focused attribute to element representation in XML source tree ([#2575](https://github.com/appium/appium-xcuitest-driver/issues/2575)) ([14ccdce](https://github.com/appium/appium-xcuitest-driver/commit/14ccdce9b80a2f06c121fd6f0adef83c06567082))
|
|
260
|
+
|
|
261
|
+
## [9.4.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.3.2...v9.4.0) (2025-06-04)
|
|
262
|
+
|
|
263
|
+
### Features
|
|
264
|
+
|
|
265
|
+
* add documentation for new appium setting: includeHittableInPageSource ([#2571](https://github.com/appium/appium-xcuitest-driver/issues/2571)) ([de310a3](https://github.com/appium/appium-xcuitest-driver/commit/de310a39a64f835e534ee9f5453539487a5bbe79))
|
|
266
|
+
|
|
267
|
+
### Code Refactoring
|
|
268
|
+
|
|
269
|
+
* use an object spread instead of Object.assign ([#2570](https://github.com/appium/appium-xcuitest-driver/issues/2570)) ([16bae3a](https://github.com/appium/appium-xcuitest-driver/commit/16bae3acb0e3cee456218d09db9f6b8846f336d4))
|
|
270
|
+
|
|
271
|
+
## [9.3.2](https://github.com/appium/appium-xcuitest-driver/compare/v9.3.1...v9.3.2) (2025-05-31)
|
|
272
|
+
|
|
273
|
+
### Miscellaneous Chores
|
|
274
|
+
|
|
275
|
+
* fix typos ([#2568](https://github.com/appium/appium-xcuitest-driver/issues/2568)) ([a1f5842](https://github.com/appium/appium-xcuitest-driver/commit/a1f5842402c189e91a09ba5b7250a584d434f56e))
|
|
276
|
+
* use optional chain for better readability ([#2569](https://github.com/appium/appium-xcuitest-driver/issues/2569)) ([035efc0](https://github.com/appium/appium-xcuitest-driver/commit/035efc0c8cf435ffbaf2355e0054bd589969af58))
|
|
277
|
+
|
|
278
|
+
## [9.3.1](https://github.com/appium/appium-xcuitest-driver/compare/v9.3.0...v9.3.1) (2025-05-29)
|
|
279
|
+
|
|
280
|
+
### Miscellaneous Chores
|
|
281
|
+
|
|
282
|
+
* Add geolocation endpoints to the method map ([#2567](https://github.com/appium/appium-xcuitest-driver/issues/2567)) ([95a0be7](https://github.com/appium/appium-xcuitest-driver/commit/95a0be784d516b7880c5f546f6ccd63b62379d3f))
|
|
283
|
+
|
|
284
|
+
## [9.3.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.2.5...v9.3.0) (2025-05-28)
|
|
285
|
+
|
|
286
|
+
### Features
|
|
287
|
+
|
|
288
|
+
* Add traits attributes ([#2566](https://github.com/appium/appium-xcuitest-driver/issues/2566)) ([73429cd](https://github.com/appium/appium-xcuitest-driver/commit/73429cd7b9a2e9054dc35ae87be5d2c0e1c62d56))
|
|
289
|
+
|
|
290
|
+
## [9.2.5](https://github.com/appium/appium-xcuitest-driver/compare/v9.2.4...v9.2.5) (2025-05-21)
|
|
291
|
+
|
|
292
|
+
### Miscellaneous Chores
|
|
293
|
+
|
|
294
|
+
* **deps-dev:** bump conventional-changelog-conventionalcommits ([#2564](https://github.com/appium/appium-xcuitest-driver/issues/2564)) ([5d98175](https://github.com/appium/appium-xcuitest-driver/commit/5d98175ddc71bff3d38bedbf3cf18ca5d859a665))
|
|
295
|
+
|
|
296
|
+
## [9.2.4](https://github.com/appium/appium-xcuitest-driver/compare/v9.2.3...v9.2.4) (2025-05-01)
|
|
297
|
+
|
|
298
|
+
### Miscellaneous Chores
|
|
299
|
+
|
|
300
|
+
* bump WDA to 9.6.2 ([59a8ffc](https://github.com/appium/appium-xcuitest-driver/commit/59a8ffccdd12fb3e66c72750d650a81b6c4fa88d))
|
|
301
|
+
|
|
302
|
+
## [9.2.3](https://github.com/appium/appium-xcuitest-driver/compare/v9.2.2...v9.2.3) (2025-04-23)
|
|
303
|
+
|
|
304
|
+
### Miscellaneous Chores
|
|
305
|
+
|
|
306
|
+
* add deprecated marks in lib/method-map.js ([#2554](https://github.com/appium/appium-xcuitest-driver/issues/2554)) ([73c83c0](https://github.com/appium/appium-xcuitest-driver/commit/73c83c0c083f683fad0631b251fa8bd69c325870))
|
|
307
|
+
|
|
308
|
+
## [9.2.2](https://github.com/appium/appium-xcuitest-driver/compare/v9.2.1...v9.2.2) (2025-04-23)
|
|
309
|
+
|
|
310
|
+
### Bug Fixes
|
|
311
|
+
|
|
312
|
+
* update mjpegScalingFactor data type settings.md with WDA 9.6.1 ([#2556](https://github.com/appium/appium-xcuitest-driver/issues/2556)) ([7eaff7b](https://github.com/appium/appium-xcuitest-driver/commit/7eaff7b3bac7d4659689f75e0687db17075dfd07))
|
|
313
|
+
|
|
314
|
+
## [9.2.1](https://github.com/appium/appium-xcuitest-driver/compare/v9.2.0...v9.2.1) (2025-04-20)
|
|
315
|
+
|
|
316
|
+
### Bug Fixes
|
|
317
|
+
|
|
318
|
+
* Missing text in long text for get text/value ([#2553](https://github.com/appium/appium-xcuitest-driver/issues/2553)) ([95d8c6d](https://github.com/appium/appium-xcuitest-driver/commit/95d8c6dbcf5790e7ebb704786581453103c7dbec))
|
|
319
|
+
|
|
320
|
+
## [9.2.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.1.4...v9.2.0) (2025-04-10)
|
|
321
|
+
|
|
322
|
+
### Features
|
|
323
|
+
|
|
324
|
+
* Bump WDA to enable the autoClickAlertSelector setting ([#2550](https://github.com/appium/appium-xcuitest-driver/issues/2550)) ([3136cbe](https://github.com/appium/appium-xcuitest-driver/commit/3136cbedb4a172eb3d782be3e20853a6b174cf2c))
|
|
325
|
+
|
|
326
|
+
## [9.1.4](https://github.com/appium/appium-xcuitest-driver/compare/v9.1.3...v9.1.4) (2025-04-05)
|
|
327
|
+
|
|
328
|
+
### Miscellaneous Chores
|
|
329
|
+
|
|
330
|
+
* bump appium-ios-simulator to include a fix for applesimutils usage ([49d401e](https://github.com/appium/appium-xcuitest-driver/commit/49d401eacba45a14e22bc01c4da9ab80a4985379))
|
|
331
|
+
|
|
332
|
+
## [9.1.3](https://github.com/appium/appium-xcuitest-driver/compare/v9.1.2...v9.1.3) (2025-04-02)
|
|
333
|
+
|
|
334
|
+
### Miscellaneous Chores
|
|
335
|
+
|
|
336
|
+
* Bump WDA ([2a59ee5](https://github.com/appium/appium-xcuitest-driver/commit/2a59ee573303c5ee7e0c8a323e1de08da505f10a))
|
|
337
|
+
|
|
338
|
+
## [9.1.2](https://github.com/appium/appium-xcuitest-driver/compare/v9.1.1...v9.1.2) (2025-03-31)
|
|
339
|
+
|
|
340
|
+
### Miscellaneous Chores
|
|
341
|
+
|
|
342
|
+
* **deps-dev:** bump sinon from 19.0.5 to 20.0.0 ([#2540](https://github.com/appium/appium-xcuitest-driver/issues/2540)) ([96e30a9](https://github.com/appium/appium-xcuitest-driver/commit/96e30a95027b8f5beab5cd32d888a654ab3f2fdc))
|
|
343
|
+
|
|
344
|
+
## [9.1.1](https://github.com/appium/appium-xcuitest-driver/compare/v9.1.0...v9.1.1) (2025-03-31)
|
|
345
|
+
|
|
346
|
+
### Bug Fixes
|
|
347
|
+
|
|
348
|
+
* bind this ([#2543](https://github.com/appium/appium-xcuitest-driver/issues/2543)) ([c9adc42](https://github.com/appium/appium-xcuitest-driver/commit/c9adc421f72124dc4243cb0f2df73c620c6554b5))
|
|
349
|
+
|
|
350
|
+
## [9.1.0](https://github.com/appium/appium-xcuitest-driver/compare/v9.0.2...v9.1.0) (2025-03-31)
|
|
351
|
+
|
|
352
|
+
### Features
|
|
353
|
+
|
|
354
|
+
* add skipDocumentsContainerCheck settings to apply [#2541](https://github.com/appium/appium-xcuitest-driver/issues/2541) change ([#2542](https://github.com/appium/appium-xcuitest-driver/issues/2542)) ([abf13cf](https://github.com/appium/appium-xcuitest-driver/commit/abf13cfe1d4acf723a0bd7873bf63bfa8b8673bd))
|
|
355
|
+
|
|
356
|
+
## [9.0.2](https://github.com/appium/appium-xcuitest-driver/compare/v9.0.1...v9.0.2) (2025-03-27)
|
|
357
|
+
|
|
358
|
+
### Miscellaneous Chores
|
|
359
|
+
|
|
360
|
+
* Bump WDA ([fe7cce1](https://github.com/appium/appium-xcuitest-driver/commit/fe7cce11931893bfa193f7128169a5986d882f4f))
|
|
361
|
+
|
|
362
|
+
## [9.0.1](https://github.com/appium/appium-xcuitest-driver/compare/v9.0.0...v9.0.1) (2025-03-26)
|
|
363
|
+
|
|
364
|
+
### Miscellaneous Chores
|
|
365
|
+
|
|
366
|
+
* Bump WDA ([9c0341e](https://github.com/appium/appium-xcuitest-driver/commit/9c0341eaeb80b8e19212348d8125efaec1661d6c))
|
|
367
|
+
|
|
368
|
+
## [9.0.0](https://github.com/appium/appium-xcuitest-driver/compare/v8.4.3...v9.0.0) (2025-03-24)
|
|
369
|
+
|
|
370
|
+
### ⚠ BREAKING CHANGES
|
|
371
|
+
|
|
372
|
+
* The following deprecated driver methods were removed:
|
|
373
|
+
- getWindowSizeWeb
|
|
374
|
+
- getWindowSizeNative
|
|
375
|
+
|
|
376
|
+
### Features
|
|
377
|
+
|
|
378
|
+
* Switch size retrieval to use the W3C window/rect endpoint ([#2538](https://github.com/appium/appium-xcuitest-driver/issues/2538)) ([cdc421f](https://github.com/appium/appium-xcuitest-driver/commit/cdc421f70dba0ad907d180fc23f4719724fe0bcf))
|
|
379
|
+
|
|
380
|
+
## [8.4.3](https://github.com/appium/appium-xcuitest-driver/compare/v8.4.2...v8.4.3) (2025-03-14)
|
|
381
|
+
|
|
382
|
+
### Miscellaneous Chores
|
|
383
|
+
|
|
384
|
+
* Bump WDA ([#2535](https://github.com/appium/appium-xcuitest-driver/issues/2535)) ([7a20be7](https://github.com/appium/appium-xcuitest-driver/commit/7a20be72c3b5c45d056d1a2bba28088a4caba19d))
|
|
385
|
+
|
|
386
|
+
## [8.4.2](https://github.com/appium/appium-xcuitest-driver/compare/v8.4.1...v8.4.2) (2025-03-13)
|
|
387
|
+
|
|
388
|
+
### Bug Fixes
|
|
389
|
+
|
|
390
|
+
* Make sure a proper file names encoding is used while unzipping files from app bundles ([#2534](https://github.com/appium/appium-xcuitest-driver/issues/2534)) ([cb4034a](https://github.com/appium/appium-xcuitest-driver/commit/cb4034a86924578119a8639452268230ae0f1f71))
|
|
391
|
+
|
|
392
|
+
## [8.4.1](https://github.com/appium/appium-xcuitest-driver/compare/v8.4.0...v8.4.1) (2025-03-13)
|
|
393
|
+
|
|
394
|
+
### Miscellaneous Chores
|
|
395
|
+
|
|
396
|
+
* Bump remote debugger ([0272eee](https://github.com/appium/appium-xcuitest-driver/commit/0272eee54a5c88c2a87cb81213620062dfc7de82))
|
|
397
|
+
|
|
398
|
+
## [8.4.0](https://github.com/appium/appium-xcuitest-driver/compare/v8.3.3...v8.4.0) (2025-03-09)
|
|
399
|
+
|
|
400
|
+
### Features
|
|
401
|
+
|
|
402
|
+
* add placeholderValue explicitly as an element attribute ([#2529](https://github.com/appium/appium-xcuitest-driver/issues/2529)) ([5c4aee5](https://github.com/appium/appium-xcuitest-driver/commit/5c4aee50ee661fdceeda920c8008c761ec91323d))
|
|
403
|
+
|
|
404
|
+
## [8.3.3](https://github.com/appium/appium-xcuitest-driver/compare/v8.3.2...v8.3.3) (2025-02-25)
|
|
405
|
+
|
|
406
|
+
### Miscellaneous Chores
|
|
407
|
+
|
|
408
|
+
* Bump remote debugger ([9b7c329](https://github.com/appium/appium-xcuitest-driver/commit/9b7c329ff9fef4acc140ac3836c10410cd4f0b96))
|
|
409
|
+
|
|
410
|
+
## [8.3.2](https://github.com/appium/appium-xcuitest-driver/compare/v8.3.1...v8.3.2) (2025-02-21)
|
|
411
|
+
|
|
412
|
+
### Bug Fixes
|
|
413
|
+
|
|
414
|
+
* Pass reqBasePath proxy option ([#2527](https://github.com/appium/appium-xcuitest-driver/issues/2527)) ([234c16c](https://github.com/appium/appium-xcuitest-driver/commit/234c16ce00096e83ad2156c69d236bf2c297c353))
|
|
415
|
+
|
|
416
|
+
## [8.3.1](https://github.com/appium/appium-xcuitest-driver/compare/v8.3.0...v8.3.1) (2025-02-06)
|
|
417
|
+
|
|
418
|
+
### Miscellaneous Chores
|
|
419
|
+
|
|
420
|
+
* bump wda version to 9.0.3 ([b645987](https://github.com/appium/appium-xcuitest-driver/commit/b64598758ee5040d98ff9bda6872d8b5a0ff125e))
|
|
421
|
+
|
|
422
|
+
## [8.3.0](https://github.com/appium/appium-xcuitest-driver/compare/v8.2.0...v8.3.0) (2025-01-30)
|
|
423
|
+
|
|
424
|
+
### Features
|
|
425
|
+
|
|
426
|
+
* always use vendContainer to add files without extra app permissions ([#2522](https://github.com/appium/appium-xcuitest-driver/issues/2522)) ([6f3e7b5](https://github.com/appium/appium-xcuitest-driver/commit/6f3e7b5b30f7f5c438cd0cc0fce1f2aa7a3f4f3b))
|
|
427
|
+
|
|
428
|
+
## [8.2.0](https://github.com/appium/appium-xcuitest-driver/compare/v8.1.0...v8.2.0) (2025-01-29)
|
|
429
|
+
|
|
430
|
+
### Features
|
|
431
|
+
|
|
432
|
+
* add increase contrast and content size commands ([#2520](https://github.com/appium/appium-xcuitest-driver/issues/2520)) ([a3fc183](https://github.com/appium/appium-xcuitest-driver/commit/a3fc18322fcded1842acf7ce7d56ad82cb4312ca))
|
|
433
|
+
|
|
434
|
+
## [8.1.0](https://github.com/appium/appium-xcuitest-driver/compare/v8.0.0...v8.1.0) (2025-01-21)
|
|
435
|
+
|
|
436
|
+
### Features
|
|
437
|
+
|
|
438
|
+
* create port forward when mjpegServerPort is provided in caps ([#2517](https://github.com/appium/appium-xcuitest-driver/issues/2517)) ([ed4c9cf](https://github.com/appium/appium-xcuitest-driver/commit/ed4c9cfa55c988b69140c08dcec01edde7b6b371))
|
|
439
|
+
|
|
440
|
+
## [8.0.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.35.1...v8.0.0) (2025-01-17)
|
|
441
|
+
|
|
442
|
+
### ⚠ BREAKING CHANGES
|
|
443
|
+
|
|
444
|
+
* Removed the customSnapshotTimeout setting as a result of WDA upgrade to v9
|
|
445
|
+
|
|
446
|
+
### Features
|
|
447
|
+
|
|
448
|
+
* Bump WDA to v9 ([#2511](https://github.com/appium/appium-xcuitest-driver/issues/2511)) ([3067ae5](https://github.com/appium/appium-xcuitest-driver/commit/3067ae5f75520b750925e4a9671a8441a05ffdf8))
|
|
449
|
+
|
|
450
|
+
## [7.35.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.35.0...v7.35.1) (2025-01-03)
|
|
451
|
+
|
|
452
|
+
### Miscellaneous Chores
|
|
453
|
+
|
|
454
|
+
* Bump eslint version ([#2508](https://github.com/appium/appium-xcuitest-driver/issues/2508)) ([565e6bc](https://github.com/appium/appium-xcuitest-driver/commit/565e6bc345f07678e77134f9b84182fa996b1853))
|
|
455
|
+
|
|
456
|
+
## [7.35.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.34.2...v7.35.0) (2024-12-23)
|
|
457
|
+
|
|
458
|
+
### Features
|
|
459
|
+
|
|
460
|
+
* Bump appium-ios-device to support USBMUXD_SOCKET_ADDRESS ([#2507](https://github.com/appium/appium-xcuitest-driver/issues/2507)) ([a8adca8](https://github.com/appium/appium-xcuitest-driver/commit/a8adca87556d1b42265ba5b2474b7e4d23050c84))
|
|
461
|
+
|
|
462
|
+
## [7.34.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.34.1...v7.34.2) (2024-12-19)
|
|
463
|
+
|
|
464
|
+
### Bug Fixes
|
|
465
|
+
|
|
466
|
+
* Adjust log level for BiDi events ([#2505](https://github.com/appium/appium-xcuitest-driver/issues/2505)) ([1a73fcd](https://github.com/appium/appium-xcuitest-driver/commit/1a73fcd0c879f2bb70e0c431e110c8d601ff754d))
|
|
467
|
+
|
|
468
|
+
## [7.34.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.34.0...v7.34.1) (2024-12-14)
|
|
469
|
+
|
|
470
|
+
### Miscellaneous Chores
|
|
471
|
+
|
|
472
|
+
* Tune contextUpdated event generation ([#2503](https://github.com/appium/appium-xcuitest-driver/issues/2503)) ([8ee8fcf](https://github.com/appium/appium-xcuitest-driver/commit/8ee8fcfd0898c7a38c4bb5064d18360d2eb45451))
|
|
473
|
+
|
|
474
|
+
## [7.34.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.33.1...v7.34.0) (2024-12-13)
|
|
475
|
+
|
|
476
|
+
### Features
|
|
477
|
+
|
|
478
|
+
* extend to handle critical notification elements in respectSystemAlerts settings ([#2502](https://github.com/appium/appium-xcuitest-driver/issues/2502)) ([b4fcccb](https://github.com/appium/appium-xcuitest-driver/commit/b4fcccb1c79f0d6b3dcc4041267893b849c2f557))
|
|
479
|
+
|
|
480
|
+
## [7.33.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.33.0...v7.33.1) (2024-12-12)
|
|
481
|
+
|
|
482
|
+
### Miscellaneous Chores
|
|
483
|
+
|
|
484
|
+
* Replace occurrences of the deprecated errorAndThrow API ([#2501](https://github.com/appium/appium-xcuitest-driver/issues/2501)) ([d2122eb](https://github.com/appium/appium-xcuitest-driver/commit/d2122ebb86e82026ede34803c33a5234e4111982))
|
|
485
|
+
|
|
486
|
+
## [7.33.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.32.1...v7.33.0) (2024-12-09)
|
|
487
|
+
|
|
488
|
+
### Features
|
|
489
|
+
|
|
490
|
+
* Screenshooting of web elements ([#2499](https://github.com/appium/appium-xcuitest-driver/issues/2499)) ([b12e4dd](https://github.com/appium/appium-xcuitest-driver/commit/b12e4dd449895d5d4a4909c0b74df5a401013b69))
|
|
491
|
+
|
|
492
|
+
## [7.32.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.32.0...v7.32.1) (2024-12-03)
|
|
493
|
+
|
|
494
|
+
### Miscellaneous Chores
|
|
495
|
+
|
|
496
|
+
* **deps-dev:** bump mocha from 10.8.2 to 11.0.1 ([#2497](https://github.com/appium/appium-xcuitest-driver/issues/2497)) ([4e9eabc](https://github.com/appium/appium-xcuitest-driver/commit/4e9eabc43fcc537b0dcda246fadfb263555046be))
|
|
497
|
+
|
|
498
|
+
## [7.32.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.31.0...v7.32.0) (2024-11-16)
|
|
499
|
+
|
|
500
|
+
### Features
|
|
501
|
+
|
|
502
|
+
* Add a BiDi event upon context change ([#2494](https://github.com/appium/appium-xcuitest-driver/issues/2494)) ([09c824d](https://github.com/appium/appium-xcuitest-driver/commit/09c824d357b62574d8c89da76735e58756964442))
|
|
503
|
+
|
|
504
|
+
## [7.31.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.30.0...v7.31.0) (2024-11-12)
|
|
505
|
+
|
|
506
|
+
### Features
|
|
507
|
+
|
|
508
|
+
* Add support for excluded_attributes to source api with json format ([#2493](https://github.com/appium/appium-xcuitest-driver/issues/2493)) ([85eed0a](https://github.com/appium/appium-xcuitest-driver/commit/85eed0aed39650b95bc4b82e05c3834dbc270b5c))
|
|
509
|
+
|
|
510
|
+
## [7.30.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.29.1...v7.30.0) (2024-11-12)
|
|
511
|
+
|
|
512
|
+
### Features
|
|
513
|
+
|
|
514
|
+
* Return default native window handle in native context ([#2491](https://github.com/appium/appium-xcuitest-driver/issues/2491)) ([0a545e0](https://github.com/appium/appium-xcuitest-driver/commit/0a545e0e63f67c3d57ca551f8eff163fceff35b4))
|
|
515
|
+
|
|
516
|
+
## [7.29.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.29.0...v7.29.1) (2024-11-11)
|
|
517
|
+
|
|
518
|
+
### Bug Fixes
|
|
519
|
+
|
|
520
|
+
* Tune simulator app architecture validation ([#2492](https://github.com/appium/appium-xcuitest-driver/issues/2492)) ([0738ae9](https://github.com/appium/appium-xcuitest-driver/commit/0738ae9a6db8da8a47fe08c6d9e2d463c1c17591))
|
|
521
|
+
|
|
522
|
+
## [7.29.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.28.3...v7.29.0) (2024-11-11)
|
|
523
|
+
|
|
524
|
+
### Features
|
|
525
|
+
|
|
526
|
+
* add useClearTextShortcut to setting api ([#2490](https://github.com/appium/appium-xcuitest-driver/issues/2490)) ([f54a157](https://github.com/appium/appium-xcuitest-driver/commit/f54a1570da5ca791ccb1f3f7402dafd1b9860c1b))
|
|
527
|
+
|
|
528
|
+
## [7.28.3](https://github.com/appium/appium-xcuitest-driver/compare/v7.28.2...v7.28.3) (2024-10-23)
|
|
529
|
+
|
|
530
|
+
### Bug Fixes
|
|
531
|
+
|
|
532
|
+
* Add accessible attribute to the xml tree in case of useJSONSource ([#2484](https://github.com/appium/appium-xcuitest-driver/issues/2484)) ([e25ac81](https://github.com/appium/appium-xcuitest-driver/commit/e25ac81dcba287362c49c5768fcc4ab0c09de18c))
|
|
533
|
+
|
|
534
|
+
## [7.28.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.28.1...v7.28.2) (2024-10-23)
|
|
535
|
+
|
|
536
|
+
### Bug Fixes
|
|
537
|
+
|
|
538
|
+
* typo in .npmrc ([#2483](https://github.com/appium/appium-xcuitest-driver/issues/2483)) ([8b09ef0](https://github.com/appium/appium-xcuitest-driver/commit/8b09ef08c5eb39800c3f31cba15256fe1b69d4b3))
|
|
539
|
+
|
|
540
|
+
## [7.28.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.28.0...v7.28.1) (2024-10-18)
|
|
541
|
+
|
|
542
|
+
### Bug Fixes
|
|
543
|
+
|
|
544
|
+
* bump WDA to fix transient overlay windows handling when respectSystemAlerts is enabled ([#2482](https://github.com/appium/appium-xcuitest-driver/issues/2482)) ([e504a6d](https://github.com/appium/appium-xcuitest-driver/commit/e504a6dc6fca4a4d5480a4a37d47b2f26cdee243))
|
|
545
|
+
|
|
546
|
+
## [7.28.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.27.1...v7.28.0) (2024-10-17)
|
|
547
|
+
|
|
548
|
+
### Features
|
|
549
|
+
|
|
550
|
+
* Add 'simulatorLogLevel' capability ([#2479](https://github.com/appium/appium-xcuitest-driver/issues/2479)) ([b75f5ec](https://github.com/appium/appium-xcuitest-driver/commit/b75f5ecbc87d2245a330e043b8ca5aac96f8cac1))
|
|
551
|
+
|
|
552
|
+
## [7.27.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.27.0...v7.27.1) (2024-10-09)
|
|
553
|
+
|
|
554
|
+
### Bug Fixes
|
|
555
|
+
|
|
556
|
+
* use lipo -info instead of file for architecture detection ([#2478](https://github.com/appium/appium-xcuitest-driver/issues/2478)) ([993aa3a](https://github.com/appium/appium-xcuitest-driver/commit/993aa3a13fe257a636293b78aa5fa757601dcc09))
|
|
557
|
+
|
|
558
|
+
## [7.27.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.26.4...v7.27.0) (2024-09-25)
|
|
559
|
+
|
|
560
|
+
### Features
|
|
561
|
+
|
|
562
|
+
* build-wda script parameters ([#2475](https://github.com/appium/appium-xcuitest-driver/issues/2475)) ([b8bdfad](https://github.com/appium/appium-xcuitest-driver/commit/b8bdfad3c86efd2d351e99fd53c879d7e6e4b082))
|
|
563
|
+
|
|
564
|
+
## [7.26.4](https://github.com/appium/appium-xcuitest-driver/compare/v7.26.3...v7.26.4) (2024-09-17)
|
|
565
|
+
|
|
566
|
+
### Miscellaneous Chores
|
|
567
|
+
|
|
568
|
+
* **deps-dev:** bump sinon from 18.0.1 to 19.0.2 ([#2469](https://github.com/appium/appium-xcuitest-driver/issues/2469)) ([e737dde](https://github.com/appium/appium-xcuitest-driver/commit/e737dde53880b70536440cec84037ad58ed7f4ab))
|
|
569
|
+
|
|
570
|
+
## [7.26.3](https://github.com/appium/appium-xcuitest-driver/compare/v7.26.2...v7.26.3) (2024-09-13)
|
|
571
|
+
|
|
572
|
+
### Bug Fixes
|
|
573
|
+
|
|
574
|
+
* Strip colors from server logs ([#2466](https://github.com/appium/appium-xcuitest-driver/issues/2466)) ([661f9d3](https://github.com/appium/appium-xcuitest-driver/commit/661f9d3f0fcb0d483de137fc542de141f077b1dc))
|
|
575
|
+
|
|
576
|
+
## [7.26.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.26.1...v7.26.2) (2024-09-07)
|
|
577
|
+
|
|
578
|
+
### Miscellaneous Chores
|
|
579
|
+
|
|
580
|
+
* Set static event realm ([a08ce4f](https://github.com/appium/appium-xcuitest-driver/commit/a08ce4ffb3e73e21fed4d7a28d0004bcaa899bde))
|
|
581
|
+
|
|
582
|
+
## [7.26.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.26.0...v7.26.1) (2024-09-06)
|
|
583
|
+
|
|
584
|
+
### Bug Fixes
|
|
585
|
+
|
|
586
|
+
* safari process management will be done by WDA for real devices ([#2464](https://github.com/appium/appium-xcuitest-driver/issues/2464)) ([18eddc3](https://github.com/appium/appium-xcuitest-driver/commit/18eddc3c48a8361182511a14e46915d6db71cda2))
|
|
587
|
+
|
|
588
|
+
## [7.26.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.25.0...v7.26.0) (2024-09-05)
|
|
589
|
+
|
|
590
|
+
### Features
|
|
591
|
+
|
|
592
|
+
* Publish different log types over BiDi ([#2458](https://github.com/appium/appium-xcuitest-driver/issues/2458)) ([29e9d5e](https://github.com/appium/appium-xcuitest-driver/commit/29e9d5e18c9fe2523dd586d7a32fdce870a81ff0))
|
|
593
|
+
|
|
594
|
+
## [7.25.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.18...v7.25.0) (2024-08-31)
|
|
595
|
+
|
|
596
|
+
### Features
|
|
597
|
+
|
|
598
|
+
* add mobile:simctl to run listed simctl subcommands ([#2461](https://github.com/appium/appium-xcuitest-driver/issues/2461)) ([6aac043](https://github.com/appium/appium-xcuitest-driver/commit/6aac043d6882137e23f44da2ce2773657df3378c))
|
|
599
|
+
|
|
600
|
+
## [7.24.18](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.17...v7.24.18) (2024-08-26)
|
|
601
|
+
|
|
602
|
+
### Miscellaneous Chores
|
|
603
|
+
|
|
604
|
+
* Bump appium-ios-device ([d67869e](https://github.com/appium/appium-xcuitest-driver/commit/d67869ef2243d1a7f0bd4780062e9370ab87d6c8))
|
|
605
|
+
|
|
606
|
+
## [7.24.17](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.16...v7.24.17) (2024-08-22)
|
|
607
|
+
|
|
608
|
+
### Miscellaneous Chores
|
|
609
|
+
|
|
610
|
+
* **deps-dev:** bump webdriverio from 8.40.3 to 9.0.6 ([#2457](https://github.com/appium/appium-xcuitest-driver/issues/2457)) ([4d9ba89](https://github.com/appium/appium-xcuitest-driver/commit/4d9ba8937746b8fa354fc019af3ebfe439e72dee))
|
|
611
|
+
|
|
612
|
+
## [7.24.16](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.15...v7.24.16) (2024-08-16)
|
|
613
|
+
|
|
614
|
+
### Miscellaneous Chores
|
|
615
|
+
|
|
616
|
+
* Improve web view detection error messages ([#2452](https://github.com/appium/appium-xcuitest-driver/issues/2452)) ([efd5fa3](https://github.com/appium/appium-xcuitest-driver/commit/efd5fa3732bd7a5a74091f4b79991d8e18b56f69))
|
|
617
|
+
|
|
618
|
+
## [7.24.15](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.14...v7.24.15) (2024-08-09)
|
|
619
|
+
|
|
620
|
+
### Miscellaneous Chores
|
|
621
|
+
|
|
622
|
+
* Bump WDA ([#2451](https://github.com/appium/appium-xcuitest-driver/issues/2451)) ([c1a6413](https://github.com/appium/appium-xcuitest-driver/commit/c1a64138db210e52a54c49e5a654793a282cfc2c))
|
|
623
|
+
|
|
624
|
+
## [7.24.14](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.13...v7.24.14) (2024-08-08)
|
|
625
|
+
|
|
626
|
+
### Miscellaneous Chores
|
|
627
|
+
|
|
628
|
+
* Bump remote debugger ([#2450](https://github.com/appium/appium-xcuitest-driver/issues/2450)) ([c705a36](https://github.com/appium/appium-xcuitest-driver/commit/c705a3603d206127b805df6b6fb052c47a466e2a))
|
|
629
|
+
|
|
630
|
+
## [7.24.13](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.12...v7.24.13) (2024-08-08)
|
|
631
|
+
|
|
632
|
+
### Miscellaneous Chores
|
|
633
|
+
|
|
634
|
+
* Try to open the initial URL with WDA if no active pages are found ([#2449](https://github.com/appium/appium-xcuitest-driver/issues/2449)) ([08cad3e](https://github.com/appium/appium-xcuitest-driver/commit/08cad3e0d3f2faac6495effb3974ed05a3b7e6cd))
|
|
635
|
+
|
|
636
|
+
## [7.24.12](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.11...v7.24.12) (2024-08-04)
|
|
637
|
+
|
|
638
|
+
### Miscellaneous Chores
|
|
639
|
+
|
|
640
|
+
* Bump remote debugger to v12 ([#2446](https://github.com/appium/appium-xcuitest-driver/issues/2446)) ([093d4d4](https://github.com/appium/appium-xcuitest-driver/commit/093d4d44b438d8f05b4e5efe231c4f304f80f98c))
|
|
641
|
+
|
|
642
|
+
## [7.24.11](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.10...v7.24.11) (2024-08-02)
|
|
643
|
+
|
|
644
|
+
### Miscellaneous Chores
|
|
645
|
+
|
|
646
|
+
* Make remote debugger-related messages more useful ([#2443](https://github.com/appium/appium-xcuitest-driver/issues/2443)) ([65a5ce1](https://github.com/appium/appium-xcuitest-driver/commit/65a5ce11d6e69e7be042e571489f3530647f98a4))
|
|
647
|
+
|
|
648
|
+
## [7.24.10](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.9...v7.24.10) (2024-08-02)
|
|
649
|
+
|
|
650
|
+
### Miscellaneous Chores
|
|
651
|
+
|
|
652
|
+
* Replace fancy-log dependency with appium logger ([#2442](https://github.com/appium/appium-xcuitest-driver/issues/2442)) ([9911b4e](https://github.com/appium/appium-xcuitest-driver/commit/9911b4e315a13ca27d9f1831bec7e2012bfde8b4))
|
|
653
|
+
|
|
654
|
+
## [7.24.9](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.8...v7.24.9) (2024-08-01)
|
|
655
|
+
|
|
656
|
+
### Bug Fixes
|
|
657
|
+
|
|
658
|
+
* Streamline page selection ([#2440](https://github.com/appium/appium-xcuitest-driver/issues/2440)) ([2564829](https://github.com/appium/appium-xcuitest-driver/commit/2564829b05aa4a1d784b65ddb4b3792734320489))
|
|
659
|
+
|
|
660
|
+
## [7.24.8](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.7...v7.24.8) (2024-08-01)
|
|
661
|
+
|
|
662
|
+
### Bug Fixes
|
|
663
|
+
|
|
664
|
+
* Pyidevice ctor invocations with options object ([#2441](https://github.com/appium/appium-xcuitest-driver/issues/2441)) ([7de0d95](https://github.com/appium/appium-xcuitest-driver/commit/7de0d9535c4def80f4a91e81fa1fa948e58a550c))
|
|
665
|
+
|
|
666
|
+
## [7.24.7](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.6...v7.24.7) (2024-08-01)
|
|
667
|
+
|
|
668
|
+
### Miscellaneous Chores
|
|
669
|
+
|
|
670
|
+
* Improve typing on webview commands ([#2439](https://github.com/appium/appium-xcuitest-driver/issues/2439)) ([eab9498](https://github.com/appium/appium-xcuitest-driver/commit/eab9498ca783f6f5001f5dad63445d2fba30349c))
|
|
671
|
+
|
|
672
|
+
## [7.24.6](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.5...v7.24.6) (2024-07-31)
|
|
673
|
+
|
|
674
|
+
### Miscellaneous Chores
|
|
675
|
+
|
|
676
|
+
* **deps-dev:** bump @types/node from 20.14.13 to 22.0.0 ([#2436](https://github.com/appium/appium-xcuitest-driver/issues/2436)) ([6775f45](https://github.com/appium/appium-xcuitest-driver/commit/6775f45792ba4eef61aa688f42e5feb8c1aa1146))
|
|
677
|
+
|
|
678
|
+
## [7.24.5](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.4...v7.24.5) (2024-07-31)
|
|
679
|
+
|
|
680
|
+
### Miscellaneous Chores
|
|
681
|
+
|
|
682
|
+
* Set the default webview connect timeout ([#2438](https://github.com/appium/appium-xcuitest-driver/issues/2438)) ([a63856d](https://github.com/appium/appium-xcuitest-driver/commit/a63856dfe279f187fc8e5a949feed48fb864c40d))
|
|
683
|
+
|
|
684
|
+
## [7.24.4](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.3...v7.24.4) (2024-07-30)
|
|
685
|
+
|
|
686
|
+
### Miscellaneous Chores
|
|
687
|
+
|
|
688
|
+
* Tune webview connection timeouts ([#2437](https://github.com/appium/appium-xcuitest-driver/issues/2437)) ([02af8e2](https://github.com/appium/appium-xcuitest-driver/commit/02af8e2f6a909471f2ebcec6425b51d5dd242d59))
|
|
689
|
+
|
|
690
|
+
## [7.24.3](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.2...v7.24.3) (2024-07-26)
|
|
691
|
+
|
|
692
|
+
### Miscellaneous Chores
|
|
693
|
+
|
|
694
|
+
* Raise more helpful error if a W3C action contains a web element ([#2435](https://github.com/appium/appium-xcuitest-driver/issues/2435)) ([5d80cd8](https://github.com/appium/appium-xcuitest-driver/commit/5d80cd8ce24ab9a6cd8c6a5c5bdc8c23a7af3362))
|
|
695
|
+
|
|
696
|
+
## [7.24.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.1...v7.24.2) (2024-07-25)
|
|
697
|
+
|
|
698
|
+
### Miscellaneous Chores
|
|
699
|
+
|
|
700
|
+
* Make remote debugger typed ([#2433](https://github.com/appium/appium-xcuitest-driver/issues/2433)) ([f643c16](https://github.com/appium/appium-xcuitest-driver/commit/f643c16e5bd22f3f9d6b2f3c7a30d2f24ab4ea8f))
|
|
701
|
+
|
|
702
|
+
## [7.24.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.0...v7.24.1) (2024-07-20)
|
|
703
|
+
|
|
704
|
+
### Bug Fixes
|
|
705
|
+
|
|
706
|
+
* no actions in w3c actions case ([#2432](https://github.com/appium/appium-xcuitest-driver/issues/2432)) ([8bd2bd6](https://github.com/appium/appium-xcuitest-driver/commit/8bd2bd6f4e9c60622b20d5c2af7323630ea1b731))
|
|
707
|
+
|
|
708
|
+
## [7.24.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.23.2...v7.24.0) (2024-07-15)
|
|
709
|
+
|
|
710
|
+
### Features
|
|
711
|
+
|
|
712
|
+
* Emit an event on syslog startup ([#2430](https://github.com/appium/appium-xcuitest-driver/issues/2430)) ([157b05e](https://github.com/appium/appium-xcuitest-driver/commit/157b05e134a075e7c3c481725ecd6c39e55c76a7))
|
|
713
|
+
|
|
714
|
+
## [7.23.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.23.1...v7.23.2) (2024-07-13)
|
|
715
|
+
|
|
716
|
+
### Bug Fixes
|
|
717
|
+
|
|
718
|
+
* Filter out other simulators properly for shutdown ([#2429](https://github.com/appium/appium-xcuitest-driver/issues/2429)) ([b7a9ad7](https://github.com/appium/appium-xcuitest-driver/commit/b7a9ad7ea8fe698a0d8cbbf0871e4b59eef91f5d))
|
|
719
|
+
|
|
720
|
+
## [7.23.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.23.0...v7.23.1) (2024-07-09)
|
|
721
|
+
|
|
722
|
+
### Miscellaneous Chores
|
|
723
|
+
|
|
724
|
+
* Remove extra import ([ab07082](https://github.com/appium/appium-xcuitest-driver/commit/ab070823f7287111a085cacf63ab6d77c2d2f031))
|
|
725
|
+
|
|
726
|
+
## [7.23.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.22.1...v7.23.0) (2024-07-04)
|
|
727
|
+
|
|
728
|
+
### Features
|
|
729
|
+
|
|
730
|
+
* Rewrite py-ios-device client and crash reports logger into typescript ([#2423](https://github.com/appium/appium-xcuitest-driver/issues/2423)) ([8d405e8](https://github.com/appium/appium-xcuitest-driver/commit/8d405e8081eb0c4a09217717eb380ab4076a9736))
|
|
731
|
+
|
|
732
|
+
## [7.22.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.22.0...v7.22.1) (2024-07-03)
|
|
733
|
+
|
|
734
|
+
### Miscellaneous Chores
|
|
735
|
+
|
|
736
|
+
* Simplify subprocess output analysis ([#2422](https://github.com/appium/appium-xcuitest-driver/issues/2422)) ([c6b9be8](https://github.com/appium/appium-xcuitest-driver/commit/c6b9be8d5120b8097880bef49f67dc06a8bc548e))
|
|
737
|
+
|
|
738
|
+
## [7.22.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.21.2...v7.22.0) (2024-07-02)
|
|
739
|
+
|
|
740
|
+
### Features
|
|
741
|
+
|
|
742
|
+
* Update console and network log handlers ([#2421](https://github.com/appium/appium-xcuitest-driver/issues/2421)) ([3c72721](https://github.com/appium/appium-xcuitest-driver/commit/3c727219577c51d941d6fab68feda62eaf7bf774))
|
|
743
|
+
|
|
744
|
+
## [7.21.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.21.1...v7.21.2) (2024-07-01)
|
|
745
|
+
|
|
746
|
+
### Miscellaneous Chores
|
|
747
|
+
|
|
748
|
+
* Rewrite logging-related classes to typescript ([#2420](https://github.com/appium/appium-xcuitest-driver/issues/2420)) ([9789575](https://github.com/appium/appium-xcuitest-driver/commit/97895755c41a3a729a8f4fd972c0f900a41f383a))
|
|
749
|
+
|
|
750
|
+
## [7.21.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.21.0...v7.21.1) (2024-06-30)
|
|
751
|
+
|
|
752
|
+
### Miscellaneous Chores
|
|
753
|
+
|
|
754
|
+
* Streamline logging helpers ([#2419](https://github.com/appium/appium-xcuitest-driver/issues/2419)) ([d469237](https://github.com/appium/appium-xcuitest-driver/commit/d469237304d507feb1f59b07fd6a76d51f63fe19))
|
|
755
|
+
|
|
756
|
+
## [7.21.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.20.2...v7.21.0) (2024-06-27)
|
|
757
|
+
|
|
758
|
+
### Features
|
|
759
|
+
|
|
760
|
+
* Add mobile: wrappers for the clipboard API ([#2418](https://github.com/appium/appium-xcuitest-driver/issues/2418)) ([3b41576](https://github.com/appium/appium-xcuitest-driver/commit/3b41576b5cb51f6b4c296e48c799c069cae50f63))
|
|
761
|
+
|
|
762
|
+
## [7.20.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.20.1...v7.20.2) (2024-06-27)
|
|
763
|
+
|
|
764
|
+
### Miscellaneous Chores
|
|
765
|
+
|
|
766
|
+
* Bump chai and chai-as-promised ([#2414](https://github.com/appium/appium-xcuitest-driver/issues/2414)) ([6ba1b5e](https://github.com/appium/appium-xcuitest-driver/commit/6ba1b5e4ba192da6b8d7a0370cd3fa79947c540e))
|
|
767
|
+
|
|
768
|
+
## [7.20.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.20.0...v7.20.1) (2024-06-26)
|
|
769
|
+
|
|
770
|
+
### Bug Fixes
|
|
771
|
+
|
|
772
|
+
* Apply the default exec timeout if not provided explicitly ([#2416](https://github.com/appium/appium-xcuitest-driver/issues/2416)) ([9a793b1](https://github.com/appium/appium-xcuitest-driver/commit/9a793b10a7cbbe317d6b2f85b25162e64a614dee))
|
|
773
|
+
* Respect the remote port capability for real devices ([#2417](https://github.com/appium/appium-xcuitest-driver/issues/2417)) ([f2d80da](https://github.com/appium/appium-xcuitest-driver/commit/f2d80da102b8fb3333b97a768bafe463553704cc))
|
|
774
|
+
|
|
775
|
+
## [7.20.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.19.0...v7.20.0) (2024-06-25)
|
|
776
|
+
|
|
777
|
+
### Features
|
|
778
|
+
|
|
779
|
+
* Introduce the `webScreenshotMode` setting ([#2415](https://github.com/appium/appium-xcuitest-driver/issues/2415)) ([c9d9d44](https://github.com/appium/appium-xcuitest-driver/commit/c9d9d4475bcb8d394ae0ba5f3c0a80bea40d1eed))
|
|
780
|
+
|
|
781
|
+
## [7.19.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.18.0...v7.19.0) (2024-06-25)
|
|
782
|
+
|
|
783
|
+
### Features
|
|
784
|
+
|
|
785
|
+
* take viewport screenshot using safari remote debugger ([#2413](https://github.com/appium/appium-xcuitest-driver/issues/2413)) ([4402c29](https://github.com/appium/appium-xcuitest-driver/commit/4402c294333e6084c854d63b4a8387a3b3cbe9ff))
|
|
786
|
+
|
|
787
|
+
## [7.18.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.17.6...v7.18.0) (2024-06-20)
|
|
788
|
+
|
|
789
|
+
### Features
|
|
790
|
+
|
|
791
|
+
* add pageLoadStrategy for Safari/WebView ([#2411](https://github.com/appium/appium-xcuitest-driver/issues/2411)) ([2517bf7](https://github.com/appium/appium-xcuitest-driver/commit/2517bf75d0de0fd00937c4c12c6ca890a49ef218))
|
|
792
|
+
|
|
793
|
+
## [7.17.6](https://github.com/appium/appium-xcuitest-driver/compare/v7.17.5...v7.17.6) (2024-06-18)
|
|
794
|
+
|
|
795
|
+
### Bug Fixes
|
|
796
|
+
|
|
797
|
+
* relax the max of recording limitation to 4200 sec as timeLimit ([#2410](https://github.com/appium/appium-xcuitest-driver/issues/2410)) ([42bc4f9](https://github.com/appium/appium-xcuitest-driver/commit/42bc4f9a373126b0025fa5cec60ee2107d101d53))
|
|
798
|
+
|
|
799
|
+
## [7.17.5](https://github.com/appium/appium-xcuitest-driver/compare/v7.17.4...v7.17.5) (2024-06-12)
|
|
800
|
+
|
|
801
|
+
### Bug Fixes
|
|
802
|
+
|
|
803
|
+
* stream end after write in a file push ([#2409](https://github.com/appium/appium-xcuitest-driver/issues/2409)) ([b2f57b7](https://github.com/appium/appium-xcuitest-driver/commit/b2f57b7fd7cce340969f522203d9375d3b120cdc))
|
|
804
|
+
|
|
805
|
+
## [7.17.4](https://github.com/appium/appium-xcuitest-driver/compare/v7.17.3...v7.17.4) (2024-06-07)
|
|
806
|
+
|
|
807
|
+
### Bug Fixes
|
|
808
|
+
|
|
809
|
+
* Add proper timestamps to server logs ([#2406](https://github.com/appium/appium-xcuitest-driver/issues/2406)) ([28a75ef](https://github.com/appium/appium-xcuitest-driver/commit/28a75efb63e699bf62c73710a6eb8c34abb59d0d))
|
|
810
|
+
|
|
811
|
+
## [7.17.3](https://github.com/appium/appium-xcuitest-driver/compare/v7.17.2...v7.17.3) (2024-06-05)
|
|
812
|
+
|
|
813
|
+
### Bug Fixes
|
|
814
|
+
|
|
815
|
+
* system prompt for Apple ID sign translation for simulators ([#2405](https://github.com/appium/appium-xcuitest-driver/issues/2405)) ([453fe68](https://github.com/appium/appium-xcuitest-driver/commit/453fe680e0da7988821e50d9779bbec2763371fc))
|
|
816
|
+
|
|
817
|
+
## [7.17.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.17.1...v7.17.2) (2024-06-04)
|
|
818
|
+
|
|
819
|
+
### Miscellaneous Chores
|
|
820
|
+
|
|
821
|
+
* **deps-dev:** bump semantic-release from 23.1.1 to 24.0.0 and conventional-changelog-conventionalcommits to 8.0.0 ([#2403](https://github.com/appium/appium-xcuitest-driver/issues/2403)) ([4058b4c](https://github.com/appium/appium-xcuitest-driver/commit/4058b4c33687b11bdc90b3a22acd67330aaab46c))
|
|
822
|
+
|
|
823
|
+
## [7.17.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.17.0...v7.17.1) (2024-06-03)
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
### Miscellaneous Chores
|
|
827
|
+
|
|
828
|
+
* **deps-dev:** bump sinon from 17.0.2 to 18.0.0 ([#2398](https://github.com/appium/appium-xcuitest-driver/issues/2398)) ([e05b63a](https://github.com/appium/appium-xcuitest-driver/commit/e05b63ae68bab6beca808f66d814db6c4e6ba7d8))
|
|
829
|
+
|
|
830
|
+
## [7.17.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.16.2...v7.17.0) (2024-06-02)
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
### Features
|
|
834
|
+
|
|
835
|
+
* Document respectSystemAlerts setting ([#2402](https://github.com/appium/appium-xcuitest-driver/issues/2402)) ([acf37dd](https://github.com/appium/appium-xcuitest-driver/commit/acf37dd4ee20745908ff87ea48d83d4e143d63d3))
|
|
836
|
+
|
|
837
|
+
## [7.16.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.16.1...v7.16.2) (2024-05-22)
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
### Miscellaneous Chores
|
|
841
|
+
|
|
842
|
+
* add note about .app naming finding for future reference ([#2400](https://github.com/appium/appium-xcuitest-driver/issues/2400)) ([aab83d5](https://github.com/appium/appium-xcuitest-driver/commit/aab83d5924b4df606bd50b395dde1898d097f7f7))
|
|
843
|
+
|
|
844
|
+
## [7.16.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.16.0...v7.16.1) (2024-05-21)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
### Bug Fixes
|
|
848
|
+
|
|
849
|
+
* Update plist detection pattern ([385ed99](https://github.com/appium/appium-xcuitest-driver/commit/385ed99afec1795940d8aba408ac448d73585a59))
|
|
850
|
+
|
|
851
|
+
## [7.16.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.15.3...v7.16.0) (2024-05-21)
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
### Features
|
|
855
|
+
|
|
856
|
+
* add maxTypingFrequency to settings api ([#2399](https://github.com/appium/appium-xcuitest-driver/issues/2399)) ([c1810c3](https://github.com/appium/appium-xcuitest-driver/commit/c1810c362ecc46e98b0cd01a196211017457c2ac))
|
|
857
|
+
|
|
858
|
+
## [7.15.3](https://github.com/appium/appium-xcuitest-driver/compare/v7.15.2...v7.15.3) (2024-05-16)
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
### Miscellaneous Chores
|
|
862
|
+
|
|
863
|
+
* Update dev dependencies ([b6f02b9](https://github.com/appium/appium-xcuitest-driver/commit/b6f02b9caf3b7fd2bb89b5309234281368207cd5))
|
|
864
|
+
|
|
865
|
+
## [7.15.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.15.1...v7.15.2) (2024-05-07)
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
### Bug Fixes
|
|
869
|
+
|
|
870
|
+
* Properly cache manifests for .ipa bundles containing multiple apps ([#2394](https://github.com/appium/appium-xcuitest-driver/issues/2394)) ([ffd3bbb](https://github.com/appium/appium-xcuitest-driver/commit/ffd3bbbe8ef3e9ef80c2b9af327d88be6e0f367a))
|
|
871
|
+
|
|
872
|
+
## [7.15.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.15.0...v7.15.1) (2024-04-27)
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
### Bug Fixes
|
|
876
|
+
|
|
877
|
+
* Update caching logic for extracted app bundles ([#2389](https://github.com/appium/appium-xcuitest-driver/issues/2389)) ([0424193](https://github.com/appium/appium-xcuitest-driver/commit/04241937414ee6fa986be8719fbb690046b63a56))
|
|
878
|
+
|
|
879
|
+
## [7.15.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.14.0...v7.15.0) (2024-04-26)
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
### Features
|
|
883
|
+
|
|
884
|
+
* Avoid unzipping of real device .ipa bundles ([#2388](https://github.com/appium/appium-xcuitest-driver/issues/2388)) ([520168a](https://github.com/appium/appium-xcuitest-driver/commit/520168aa7d8c230a44da136b9e8d21971c4ef8f8))
|
|
885
|
+
|
|
886
|
+
## [7.14.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.13.0...v7.14.0) (2024-04-23)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
### Features
|
|
890
|
+
|
|
891
|
+
* Perform bundles extraction in stream ([#2387](https://github.com/appium/appium-xcuitest-driver/issues/2387)) ([b04cebd](https://github.com/appium/appium-xcuitest-driver/commit/b04cebd99418b0e6d55d3c1813700779248e6541))
|
|
892
|
+
|
|
893
|
+
## [7.13.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.12.0...v7.13.0) (2024-04-18)
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
### Features
|
|
897
|
+
|
|
898
|
+
* add sendKeyStrategy for React to type input one by one in Web context ([#2386](https://github.com/appium/appium-xcuitest-driver/issues/2386)) ([50749cf](https://github.com/appium/appium-xcuitest-driver/commit/50749cfc11e39c34c8df9138a06539f865347082))
|
|
899
|
+
|
|
900
|
+
## [7.12.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.11.4...v7.12.0) (2024-04-17)
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
### Features
|
|
904
|
+
|
|
905
|
+
* update Atoms in remtoe debugger to selenium 4.19.0 basis ([#2385](https://github.com/appium/appium-xcuitest-driver/issues/2385)) ([0c45843](https://github.com/appium/appium-xcuitest-driver/commit/0c458437240ea2ab367e2aa2915aa053fb01481b))
|
|
906
|
+
|
|
907
|
+
## [7.11.4](https://github.com/appium/appium-xcuitest-driver/compare/v7.11.3...v7.11.4) (2024-04-15)
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
### Miscellaneous Chores
|
|
911
|
+
|
|
912
|
+
* deprecated useSimpleBuildTest, waitForQuiescence and calendarAccessAuthorized ([#2383](https://github.com/appium/appium-xcuitest-driver/issues/2383)) ([090c615](https://github.com/appium/appium-xcuitest-driver/commit/090c615682bb82745174865982eb0bcc5e5b2922))
|
|
913
|
+
|
|
914
|
+
## [7.11.3](https://github.com/appium/appium-xcuitest-driver/compare/v7.11.2...v7.11.3) (2024-04-12)
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
### Bug Fixes
|
|
918
|
+
|
|
919
|
+
* Tune appPushTimeout capability ([#2384](https://github.com/appium/appium-xcuitest-driver/issues/2384)) ([0c42d55](https://github.com/appium/appium-xcuitest-driver/commit/0c42d557d459f8ec25277dc1c2672a0045b16329))
|
|
920
|
+
|
|
921
|
+
## [7.11.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.11.1...v7.11.2) (2024-04-09)
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
### Miscellaneous Chores
|
|
925
|
+
|
|
926
|
+
* Remove extra imports ([2104b7a](https://github.com/appium/appium-xcuitest-driver/commit/2104b7a9a58630ab7bf058f5db7990cc275cf588))
|
|
927
|
+
|
|
928
|
+
## [7.11.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.11.0...v7.11.1) (2024-04-08)
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
### Bug Fixes
|
|
932
|
+
|
|
933
|
+
* update real device check condition ([9255e7c](https://github.com/appium/appium-xcuitest-driver/commit/9255e7c932d20967b0c7860df14015c5b4a63d15))
|
|
934
|
+
|
|
935
|
+
## [7.11.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.10.0...v7.11.0) (2024-04-08)
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
### Features
|
|
939
|
+
|
|
940
|
+
* export doctor used in xcuitest driver ([#2381](https://github.com/appium/appium-xcuitest-driver/issues/2381)) ([e8fd02e](https://github.com/appium/appium-xcuitest-driver/commit/e8fd02e00dc6be595d2bef253c00ab75783504e5))
|
|
941
|
+
|
|
942
|
+
## [7.10.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.9.3...v7.10.0) (2024-04-08)
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
### Features
|
|
946
|
+
|
|
947
|
+
* Add `appTimeZone` capability ([#2379](https://github.com/appium/appium-xcuitest-driver/issues/2379)) ([a06931f](https://github.com/appium/appium-xcuitest-driver/commit/a06931fca03ef4f3de0ea65eb7814660dcb08117))
|
|
948
|
+
|
|
949
|
+
## [7.9.3](https://github.com/appium/appium-xcuitest-driver/compare/v7.9.2...v7.9.3) (2024-04-07)
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
### Bug Fixes
|
|
953
|
+
|
|
954
|
+
* Added platformVersion to capabilities ([#2378](https://github.com/appium/appium-xcuitest-driver/issues/2378)) ([e75cd2c](https://github.com/appium/appium-xcuitest-driver/commit/e75cd2c127b0b2d1206cbd4d7b22923ee553798c))
|
|
955
|
+
* Update various type declarations ([#2380](https://github.com/appium/appium-xcuitest-driver/issues/2380)) ([1e18b2f](https://github.com/appium/appium-xcuitest-driver/commit/1e18b2f7c859f915aa353716add65d0a404c0fa7))
|
|
956
|
+
|
|
957
|
+
## [7.9.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.9.1...v7.9.2) (2024-04-07)
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
### Bug Fixes
|
|
961
|
+
|
|
962
|
+
* Properly match simulator udid if webDriverAgentUrl is provided ([#2377](https://github.com/appium/appium-xcuitest-driver/issues/2377)) ([bc71415](https://github.com/appium/appium-xcuitest-driver/commit/bc7141569f6148a8de77dc1989c2400a10a6c3f8))
|
|
963
|
+
|
|
964
|
+
## [7.9.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.9.0...v7.9.1) (2024-03-31)
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
### Miscellaneous Chores
|
|
968
|
+
|
|
969
|
+
* bump wda ([a777b93](https://github.com/appium/appium-xcuitest-driver/commit/a777b93a5953dfd59e54f40817d198307f72289f))
|
|
970
|
+
|
|
971
|
+
## [7.9.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.8.2...v7.9.0) (2024-03-31)
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
### Features
|
|
975
|
+
|
|
976
|
+
* Enable Safari settings modification for real devices ([#2373](https://github.com/appium/appium-xcuitest-driver/issues/2373)) ([2bf1dc5](https://github.com/appium/appium-xcuitest-driver/commit/2bf1dc56d80ec712c6a7691ca24192df6fc6f4eb))
|
|
977
|
+
|
|
978
|
+
## [7.8.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.8.1...v7.8.2) (2024-03-29)
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
### Miscellaneous Chores
|
|
982
|
+
|
|
983
|
+
* bump WDA ([1c3d68b](https://github.com/appium/appium-xcuitest-driver/commit/1c3d68b13a60513b4da9179351831ab05ca14bf3))
|
|
984
|
+
|
|
985
|
+
## [7.8.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.8.0...v7.8.1) (2024-03-29)
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
### Miscellaneous Chores
|
|
989
|
+
|
|
990
|
+
* left a comment for future work ([#2372](https://github.com/appium/appium-xcuitest-driver/issues/2372)) ([3f13c62](https://github.com/appium/appium-xcuitest-driver/commit/3f13c624ab2c89c8ff89dd07b2fdcaf33f5d5265))
|
|
991
|
+
|
|
992
|
+
## [7.8.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.7.2...v7.8.0) (2024-03-28)
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
### Features
|
|
996
|
+
|
|
997
|
+
* Add 'appLaunchStateTimeoutSec' capability support ([#2371](https://github.com/appium/appium-xcuitest-driver/issues/2371)) ([c0514e4](https://github.com/appium/appium-xcuitest-driver/commit/c0514e4050c7ab19d3e83a0026a81fa83e8218c4))
|
|
998
|
+
|
|
999
|
+
## [7.7.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.7.1...v7.7.2) (2024-03-28)
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
### Bug Fixes
|
|
1003
|
+
|
|
1004
|
+
* Address various typing errors ([#2369](https://github.com/appium/appium-xcuitest-driver/issues/2369)) ([e5d7001](https://github.com/appium/appium-xcuitest-driver/commit/e5d70010bd777c8e5fc94da412e0d2cc902c64de))
|
|
1005
|
+
|
|
1006
|
+
## [7.7.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.7.0...v7.7.1) (2024-03-28)
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
### Miscellaneous Chores
|
|
1010
|
+
|
|
1011
|
+
* tune error handling with usePreinstalledWDA ([#2368](https://github.com/appium/appium-xcuitest-driver/issues/2368)) ([1a5aafd](https://github.com/appium/appium-xcuitest-driver/commit/1a5aafd738352e4b7e73c7006668f37ac9f6812e))
|
|
1012
|
+
|
|
1013
|
+
## [7.7.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.6.1...v7.7.0) (2024-03-27)
|
|
1014
|
+
|
|
1015
|
+
|
|
1016
|
+
### Features
|
|
1017
|
+
|
|
1018
|
+
* Add the `device` property to the driver ([#2364](https://github.com/appium/appium-xcuitest-driver/issues/2364)) ([92148aa](https://github.com/appium/appium-xcuitest-driver/commit/92148aae6088297162a884516ed8a471b3eeb113))
|
|
1019
|
+
|
|
1020
|
+
## [7.6.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.6.0...v7.6.1) (2024-03-27)
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
### Bug Fixes
|
|
1024
|
+
|
|
1025
|
+
* set bundle id at the end to make arguments work properly in Devicectl[#launch](https://github.com/appium/appium-xcuitest-driver/issues/launch)App ([#2366](https://github.com/appium/appium-xcuitest-driver/issues/2366)) ([1d3fd28](https://github.com/appium/appium-xcuitest-driver/commit/1d3fd28e57bb72db421dde11eda2d9a10809d06e))
|
|
1026
|
+
|
|
1027
|
+
## [7.6.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.5.5...v7.6.0) (2024-03-26)
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
### Features
|
|
1031
|
+
|
|
1032
|
+
* add updatedWDABundleIdSuffix for usePreinstalledWDA usage ([#2358](https://github.com/appium/appium-xcuitest-driver/issues/2358)) ([b8291cb](https://github.com/appium/appium-xcuitest-driver/commit/b8291cbbc6d0a843427906cb810e9adff29c18a1))
|
|
1033
|
+
|
|
1034
|
+
## [7.5.5](https://github.com/appium/appium-xcuitest-driver/compare/v7.5.4...v7.5.5) (2024-03-26)
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
### Miscellaneous Chores
|
|
1038
|
+
|
|
1039
|
+
* add launchApp via devicectl ([#2354](https://github.com/appium/appium-xcuitest-driver/issues/2354)) ([3907455](https://github.com/appium/appium-xcuitest-driver/commit/3907455d84519709e07d683ac26ef2047ede9d59))
|
|
1040
|
+
|
|
1041
|
+
## [7.5.4](https://github.com/appium/appium-xcuitest-driver/compare/v7.5.3...v7.5.4) (2024-03-25)
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
### Bug Fixes
|
|
1045
|
+
|
|
1046
|
+
* uncaughtException: maxObjectCount exceeded in listApplications ([#2355](https://github.com/appium/appium-xcuitest-driver/issues/2355)) ([6bfc5c5](https://github.com/appium/appium-xcuitest-driver/commit/6bfc5c5e501f14f770d17d3cbea04850451ed2d2))
|
|
1047
|
+
|
|
1048
|
+
## [7.5.3](https://github.com/appium/appium-xcuitest-driver/compare/v7.5.2...v7.5.3) (2024-03-25)
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
### Bug Fixes
|
|
1052
|
+
|
|
1053
|
+
* build error ([#2356](https://github.com/appium/appium-xcuitest-driver/issues/2356)) ([5c5ebc3](https://github.com/appium/appium-xcuitest-driver/commit/5c5ebc3fe1f22568b61ba7bc96dcdedae3bcb247))
|
|
1054
|
+
* typo by [#2351](https://github.com/appium/appium-xcuitest-driver/issues/2351) ([63589a1](https://github.com/appium/appium-xcuitest-driver/commit/63589a1c8f6f83356347a4d085e619f70ee79283))
|
|
1055
|
+
|
|
1056
|
+
|
|
1057
|
+
### Miscellaneous Chores
|
|
1058
|
+
|
|
1059
|
+
* include devicectl in IOSDeploy object ([#2352](https://github.com/appium/appium-xcuitest-driver/issues/2352)) ([6c5abd1](https://github.com/appium/appium-xcuitest-driver/commit/6c5abd1eb35cc5089c8a8cb112b6fc708548c1a4))
|
|
1060
|
+
|
|
1061
|
+
## [7.5.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.5.1...v7.5.2) (2024-03-24)
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
### Miscellaneous Chores
|
|
1065
|
+
|
|
1066
|
+
* rename IosDeploy obhect to RealDevice to make the object meaning actual usage ([#2353](https://github.com/appium/appium-xcuitest-driver/issues/2353)) ([b3b7349](https://github.com/appium/appium-xcuitest-driver/commit/b3b734913bc5ef824b6cde58bfe0b389bb87abac))
|
|
1067
|
+
|
|
1068
|
+
## [7.5.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.5.0...v7.5.1) (2024-03-24)
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
### Miscellaneous Chores
|
|
1072
|
+
|
|
1073
|
+
* skip connected device check if the caps had webDriverAgentUrl ([#2351](https://github.com/appium/appium-xcuitest-driver/issues/2351)) ([407ad58](https://github.com/appium/appium-xcuitest-driver/commit/407ad58e8df03b700152f9c9bf41546e65afac4f))
|
|
1074
|
+
|
|
1075
|
+
## [7.5.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.4.2...v7.5.0) (2024-03-24)
|
|
1076
|
+
|
|
1077
|
+
|
|
1078
|
+
### Features
|
|
1079
|
+
|
|
1080
|
+
* add appium:usePreinstalledWDA for real iOS 17 devices ([#2350](https://github.com/appium/appium-xcuitest-driver/issues/2350)) ([ec5a1f7](https://github.com/appium/appium-xcuitest-driver/commit/ec5a1f73f06763da47c06386aac729e8ee75d990))
|
|
1081
|
+
|
|
1082
|
+
## [7.4.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.4.1...v7.4.2) (2024-03-23)
|
|
1083
|
+
|
|
1084
|
+
|
|
1085
|
+
### Miscellaneous Chores
|
|
1086
|
+
|
|
1087
|
+
* do not print unrelated logs ([#2346](https://github.com/appium/appium-xcuitest-driver/issues/2346)) ([ee5d83e](https://github.com/appium/appium-xcuitest-driver/commit/ee5d83ec73b9113d4876880dea36d107ecadeaaa))
|
|
1088
|
+
|
|
1089
|
+
## [7.4.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.4.0...v7.4.1) (2024-03-22)
|
|
1090
|
+
|
|
1091
|
+
|
|
1092
|
+
### Bug Fixes
|
|
1093
|
+
|
|
1094
|
+
* Pass valid arg into terminateApp ([#2348](https://github.com/appium/appium-xcuitest-driver/issues/2348)) ([e2e6a6f](https://github.com/appium/appium-xcuitest-driver/commit/e2e6a6faf4f86d9fab63e026c2820fb839a0e98c))
|
|
1095
|
+
|
|
1096
|
+
## [7.4.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.3.1...v7.4.0) (2024-03-22)
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
### Features
|
|
1100
|
+
|
|
1101
|
+
* Support usePreinstalledWDA on simulators ([#2345](https://github.com/appium/appium-xcuitest-driver/issues/2345)) ([2eb4c81](https://github.com/appium/appium-xcuitest-driver/commit/2eb4c81a4de670d3bf6d9fc062ec827b05519f25))
|
|
1102
|
+
|
|
1103
|
+
## [7.3.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.3.0...v7.3.1) (2024-03-14)
|
|
1104
|
+
|
|
1105
|
+
|
|
1106
|
+
### Bug Fixes
|
|
1107
|
+
|
|
1108
|
+
* respect defaultActiveApplication settings in activeApplication selection ([#2343](https://github.com/appium/appium-xcuitest-driver/issues/2343)) ([1837991](https://github.com/appium/appium-xcuitest-driver/commit/18379912c542ff619304476680005d4656f94de4))
|
|
1109
|
+
|
|
1110
|
+
## [7.3.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.2.0...v7.3.0) (2024-03-08)
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
### Features
|
|
1114
|
+
|
|
1115
|
+
* Video recording using native XCTest backend ([#2339](https://github.com/appium/appium-xcuitest-driver/issues/2339)) ([e17e88b](https://github.com/appium/appium-xcuitest-driver/commit/e17e88bb471500a1251a380ace91ee351f9e152b))
|
|
1116
|
+
|
|
1117
|
+
|
|
1118
|
+
### Bug Fixes
|
|
1119
|
+
|
|
1120
|
+
* Update the default timeout for the recent webview detection ([#2337](https://github.com/appium/appium-xcuitest-driver/issues/2337)) ([8d7750c](https://github.com/appium/appium-xcuitest-driver/commit/8d7750c63348d116990cd856ecd9e6853421a42f))
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
### Miscellaneous Chores
|
|
1124
|
+
|
|
1125
|
+
* bump typescript ([40d5f5d](https://github.com/appium/appium-xcuitest-driver/commit/40d5f5dc5e1593d072750ece22e251768259b0c7))
|
|
1126
|
+
|
|
1127
|
+
## [7.2.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.1.2...v7.2.0) (2024-02-28)
|
|
1128
|
+
|
|
1129
|
+
|
|
1130
|
+
### Features
|
|
1131
|
+
|
|
1132
|
+
* add webviewAtomWaitTimeout to control timeout for the atom execution ([#2335](https://github.com/appium/appium-xcuitest-driver/issues/2335)) ([255671d](https://github.com/appium/appium-xcuitest-driver/commit/255671d6328cdbc96abd46785865a758474ac100))
|
|
1133
|
+
|
|
1134
|
+
## [7.1.2](https://github.com/appium/appium-xcuitest-driver/compare/v7.1.1...v7.1.2) (2024-02-23)
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
### Bug Fixes
|
|
1138
|
+
|
|
1139
|
+
* Properly handle WDA session startup errors ([#2331](https://github.com/appium/appium-xcuitest-driver/issues/2331)) ([f4ca5ee](https://github.com/appium/appium-xcuitest-driver/commit/f4ca5ee2c542479e6acc990f551c4740d3ddd197))
|
|
1140
|
+
|
|
1141
|
+
## [7.1.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.1.0...v7.1.1) (2024-02-23)
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
### Miscellaneous Chores
|
|
1145
|
+
|
|
1146
|
+
* Bump WDA ([3374b7b](https://github.com/appium/appium-xcuitest-driver/commit/3374b7b779ed956c86344b5ed9f8c92beb142de0))
|
|
1147
|
+
|
|
1148
|
+
## [7.1.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.0.1...v7.1.0) (2024-02-18)
|
|
1149
|
+
|
|
1150
|
+
|
|
1151
|
+
### Features
|
|
1152
|
+
|
|
1153
|
+
* return the result of getGeoLocation if available for ios 17+ ([#2329](https://github.com/appium/appium-xcuitest-driver/issues/2329)) ([fc0ba2c](https://github.com/appium/appium-xcuitest-driver/commit/fc0ba2c285cccef6f4f229dc5d27b5b2d0d78569))
|
|
1154
|
+
|
|
1155
|
+
## [7.0.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.0.0...v7.0.1) (2024-02-14)
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
### Miscellaneous Chores
|
|
1159
|
+
|
|
1160
|
+
* Bump remote debugger version ([#2328](https://github.com/appium/appium-xcuitest-driver/issues/2328)) ([d12132b](https://github.com/appium/appium-xcuitest-driver/commit/d12132b4c2d0c770e681bdfd339339c23c6f3933))
|
|
1161
|
+
|
|
1162
|
+
## [7.0.0](https://github.com/appium/appium-xcuitest-driver/compare/v6.2.0...v7.0.0) (2024-02-12)
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
### ⚠ BREAKING CHANGES
|
|
1166
|
+
|
|
1167
|
+
* Removed the following obsolete APIs:
|
|
1168
|
+
- performTouch
|
|
1169
|
+
- performMultiAction
|
|
1170
|
+
|
|
1171
|
+
### Features
|
|
1172
|
+
|
|
1173
|
+
* Remove obsolete MJSONWP touch actions ([#2325](https://github.com/appium/appium-xcuitest-driver/issues/2325)) ([0e7267a](https://github.com/appium/appium-xcuitest-driver/commit/0e7267a971bc7ff1af3840ee1ea97de1f2773be0))
|
|
1174
|
+
|
|
1175
|
+
## [6.2.0](https://github.com/appium/appium-xcuitest-driver/compare/v6.1.0...v6.2.0) (2024-02-11)
|
|
1176
|
+
|
|
1177
|
+
|
|
1178
|
+
### Features
|
|
1179
|
+
|
|
1180
|
+
* Add the `appium:initialDeeplinkUrl` capabilility ([#2324](https://github.com/appium/appium-xcuitest-driver/issues/2324)) ([167c268](https://github.com/appium/appium-xcuitest-driver/commit/167c2688a21eab0d340d685c13db6681e0e0a265))
|
|
1181
|
+
|
|
1182
|
+
## [6.1.0](https://github.com/appium/appium-xcuitest-driver/compare/v6.0.3...v6.1.0) (2024-02-09)
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
### Features
|
|
1186
|
+
|
|
1187
|
+
* add checkVersion option for mobile:installApp ([#2322](https://github.com/appium/appium-xcuitest-driver/issues/2322)) ([dcc96a9](https://github.com/appium/appium-xcuitest-driver/commit/dcc96a9a4cbc3a650c77dcabdf9a3d48b29f124d))
|
|
1188
|
+
|
|
1189
|
+
## [6.0.3](https://github.com/appium/appium-xcuitest-driver/compare/v6.0.2...v6.0.3) (2024-02-08)
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
### Miscellaneous Chores
|
|
1193
|
+
|
|
1194
|
+
* add a guide for the simulated location ([#2321](https://github.com/appium/appium-xcuitest-driver/issues/2321)) ([fe6d965](https://github.com/appium/appium-xcuitest-driver/commit/fe6d96569eebf284c2ab7ecdc8b6e7f9e279ce7f))
|
|
1195
|
+
|
|
1196
|
+
## [6.0.2](https://github.com/appium/appium-xcuitest-driver/compare/v6.0.1...v6.0.2) (2024-02-06)
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
### Miscellaneous Chores
|
|
1200
|
+
|
|
1201
|
+
* Add validation of Simulator binary architecture ([#2320](https://github.com/appium/appium-xcuitest-driver/issues/2320)) ([967f712](https://github.com/appium/appium-xcuitest-driver/commit/967f71241787728d9b192e3e02d4a568d4dc701f))
|
|
1202
|
+
|
|
1203
|
+
## [6.0.1](https://github.com/appium/appium-xcuitest-driver/compare/v6.0.0...v6.0.1) (2024-02-02)
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
### Miscellaneous Chores
|
|
1207
|
+
|
|
1208
|
+
* Paralelize log collection startup ([#2318](https://github.com/appium/appium-xcuitest-driver/issues/2318)) ([ad452c9](https://github.com/appium/appium-xcuitest-driver/commit/ad452c9da9f39671c8e36adbcedbf5fcc92d68a8))
|
|
1209
|
+
|
|
1210
|
+
## [6.0.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.16.1...v6.0.0) (2024-02-01)
|
|
1211
|
+
|
|
1212
|
+
|
|
1213
|
+
### ⚠ BREAKING CHANGES
|
|
1214
|
+
|
|
1215
|
+
* Removed the unused getCoordinates API
|
|
1216
|
+
* Changed arguments order for various gesture extensions
|
|
1217
|
+
* Bumped WDA to ^6.0.0, which includes fixes for the active application detection
|
|
1218
|
+
* This change might require switching the active application to `com.apple.springboard` in order to interact with system dialogs, such as permission dialogs, while the current active application is not the springboard. Using `mobile:alert` or `acceptAlertButtonSelector`/`dismissAlertButtonSelector` also should help. See also [appium#19716](https://github.com/appium/appium/issues/19716).
|
|
1219
|
+
|
|
1220
|
+
### Features
|
|
1221
|
+
|
|
1222
|
+
* Unify gesture extensions ([#2317](https://github.com/appium/appium-xcuitest-driver/issues/2317)) ([11c9b3c](https://github.com/appium/appium-xcuitest-driver/commit/11c9b3c0320d795c36ea6b2ee9364ef85fad297c))
|
|
1223
|
+
|
|
1224
|
+
## [5.16.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.16.0...v5.16.1) (2024-02-01)
|
|
1225
|
+
|
|
1226
|
+
|
|
1227
|
+
### Reverts
|
|
1228
|
+
|
|
1229
|
+
* Revert "feat: Unify gesture extensions (#2313)" ([00161d8](https://github.com/appium/appium-xcuitest-driver/commit/00161d8c71a25cdc9c34707b467f0737c2fcc2d3)), closes [#2313](https://github.com/appium/appium-xcuitest-driver/issues/2313)
|
|
1230
|
+
|
|
1231
|
+
## [5.16.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.15.1...v5.16.0) (2024-02-01)
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
### Features
|
|
1235
|
+
|
|
1236
|
+
* Unify gesture extensions ([#2313](https://github.com/appium/appium-xcuitest-driver/issues/2313)) ([50f38c1](https://github.com/appium/appium-xcuitest-driver/commit/50f38c156d1dca5036f4d3ed7951d7e5d463c6fd))
|
|
1237
|
+
|
|
1238
|
+
## [5.15.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.15.0...v5.15.1) (2024-01-31)
|
|
1239
|
+
|
|
1240
|
+
|
|
1241
|
+
### Bug Fixes
|
|
1242
|
+
|
|
1243
|
+
* revert active application detection fix added in 5.14.1 ([#2314](https://github.com/appium/appium-xcuitest-driver/issues/2314)) ([b46243e](https://github.com/appium/appium-xcuitest-driver/commit/b46243e6276ce65bb25f6bd7650a25b935df955f))
|
|
1244
|
+
* Please see [appium#19716](https://github.com/appium/appium/issues/19716) for more details. The change addressed in the issue will come in a future release.
|
|
1245
|
+
|
|
1246
|
+
### Code Refactoring
|
|
1247
|
+
|
|
1248
|
+
* Unify devicectl usage ([#2310](https://github.com/appium/appium-xcuitest-driver/issues/2310)) ([b788c76](https://github.com/appium/appium-xcuitest-driver/commit/b788c76ef0f020adf5012d729013e7ed69508307))
|
|
1249
|
+
|
|
1250
|
+
## [5.15.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.14.2...v5.15.0) (2024-01-29)
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
### Features
|
|
1254
|
+
|
|
1255
|
+
* Add 'mobile: sendMemoryWarning' extension ([#2308](https://github.com/appium/appium-xcuitest-driver/issues/2308)) ([014952b](https://github.com/appium/appium-xcuitest-driver/commit/014952b6f98a35518d30d2e25f4809d85609b055))
|
|
1256
|
+
|
|
1257
|
+
## [5.14.2](https://github.com/appium/appium-xcuitest-driver/compare/v5.14.1...v5.14.2) (2024-01-27)
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
### Miscellaneous Chores
|
|
1261
|
+
|
|
1262
|
+
* Remove husky and commitlint ([#2307](https://github.com/appium/appium-xcuitest-driver/issues/2307)) ([8142e96](https://github.com/appium/appium-xcuitest-driver/commit/8142e96376630b3f5811532216a686eacc66495e))
|
|
1263
|
+
|
|
1264
|
+
## [5.14.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.14.0...v5.14.1) (2024-01-24)
|
|
1265
|
+
|
|
1266
|
+
### Miscellaneous Chores
|
|
1267
|
+
|
|
1268
|
+
* **deps-dev:** bump semantic-release from 22.0.12 to 23.0.0 ([#2300](https://github.com/appium/appium-xcuitest-driver/issues/2300)) ([f08270b](https://github.com/appium/appium-xcuitest-driver/commit/f08270b26cbd7ab840c5d6d7a29e24c556aca653))
|
|
1269
|
+
* Sort files to push by size ([#2301](https://github.com/appium/appium-xcuitest-driver/issues/2301)) ([b23a972](https://github.com/appium/appium-xcuitest-driver/commit/b23a9724ad68dff4a796d9345696b2a5a888b136))
|
|
1270
|
+
|
|
1271
|
+
## [5.14.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.13.2...v5.14.0) (2024-01-13)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
### Features
|
|
1275
|
+
|
|
1276
|
+
* use Menu button for tvOS in driver.back ([#2299](https://github.com/appium/appium-xcuitest-driver/issues/2299)) ([b649a96](https://github.com/appium/appium-xcuitest-driver/commit/b649a96e2fe60cba2c229f32155ed6bcfc21afd3))
|
|
1277
|
+
|
|
1278
|
+
## [5.13.2](https://github.com/appium/appium-xcuitest-driver/compare/v5.13.1...v5.13.2) (2024-01-09)
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
### Bug Fixes
|
|
1282
|
+
|
|
1283
|
+
* **docs:** adjust docs for @appium/docutils 1.0.2 ([#2293](https://github.com/appium/appium-xcuitest-driver/issues/2293)) ([e3312b4](https://github.com/appium/appium-xcuitest-driver/commit/e3312b404540f0bcfb324816d003a7c513720f7d))
|
|
1284
|
+
|
|
1285
|
+
## [5.13.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.13.0...v5.13.1) (2024-01-07)
|
|
1286
|
+
|
|
1287
|
+
|
|
1288
|
+
### Bug Fixes
|
|
1289
|
+
|
|
1290
|
+
* Import the proper support module ([#2294](https://github.com/appium/appium-xcuitest-driver/issues/2294)) ([b74ca4a](https://github.com/appium/appium-xcuitest-driver/commit/b74ca4aa05a898599b994376cc755425b5307a0b))
|
|
1291
|
+
|
|
1292
|
+
## [5.13.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.12.2...v5.13.0) (2024-01-05)
|
|
1293
|
+
|
|
1294
|
+
|
|
1295
|
+
### Features
|
|
1296
|
+
|
|
1297
|
+
* Add doctor checks ([#2292](https://github.com/appium/appium-xcuitest-driver/issues/2292)) ([804e50a](https://github.com/appium/appium-xcuitest-driver/commit/804e50aa94184061973f488f0cec8c059080d834))
|
|
1298
|
+
|
|
1299
|
+
## [5.12.2](https://github.com/appium/appium-xcuitest-driver/compare/v5.12.1...v5.12.2) (2023-12-14)
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
### Bug Fixes
|
|
1303
|
+
|
|
1304
|
+
* (dummy) ([88e1f8a](https://github.com/appium/appium-xcuitest-driver/commit/88e1f8aae8a8c13c674c1bef5f9c6d91ed588b13))
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
### Miscellaneous Chores
|
|
1308
|
+
|
|
1309
|
+
* use appearance for getAppearance ([#2285](https://github.com/appium/appium-xcuitest-driver/issues/2285)) ([1108e8c](https://github.com/appium/appium-xcuitest-driver/commit/1108e8cf3e86dab4f345429a30d5b466e43dd39b))
|
|
1310
|
+
|
|
1311
|
+
## [5.12.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.12.0...v5.12.1) (2023-12-07)
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
### Bug Fixes
|
|
1315
|
+
|
|
1316
|
+
* include a fix of setAppearance in iOS 17+ ([#2284](https://github.com/appium/appium-xcuitest-driver/issues/2284)) ([f89d4cc](https://github.com/appium/appium-xcuitest-driver/commit/f89d4ccc0c3e78bb53b0483ef367566222bc194a))
|
|
1317
|
+
|
|
1318
|
+
## [5.12.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.8...v5.12.0) (2023-12-06)
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
### Features
|
|
1322
|
+
|
|
1323
|
+
* use skipSyncUiDialogTranslation option for localization on simulators ([#2276](https://github.com/appium/appium-xcuitest-driver/issues/2276)) ([3f4898a](https://github.com/appium/appium-xcuitest-driver/commit/3f4898a13b22dd9ab5514ab20db9ecd274931018)), closes [/github.com/appium/appium/issues/19440#issuecomment-1823461012](https://github.com/appium//github.com/appium/appium/issues/19440/issues/issuecomment-1823461012)
|
|
1324
|
+
|
|
1325
|
+
## [5.11.8](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.7...v5.11.8) (2023-12-04)
|
|
1326
|
+
|
|
1327
|
+
|
|
1328
|
+
### Bug Fixes
|
|
1329
|
+
|
|
1330
|
+
* keep backward compatibility for the value of set location command via xcrun simctl privacy ([#2282](https://github.com/appium/appium-xcuitest-driver/issues/2282)) ([a1a7c48](https://github.com/appium/appium-xcuitest-driver/commit/a1a7c487b122708e218e9609e54162743bfeddb1))
|
|
1331
|
+
|
|
1332
|
+
## [5.11.7](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.6...v5.11.7) (2023-12-02)
|
|
1333
|
+
|
|
1334
|
+
|
|
1335
|
+
### Bug Fixes
|
|
1336
|
+
|
|
1337
|
+
* tune a bit more ([#2281](https://github.com/appium/appium-xcuitest-driver/issues/2281)) ([23d2f68](https://github.com/appium/appium-xcuitest-driver/commit/23d2f6803d77c08a7419c2feb291d50edc2c05ac))
|
|
1338
|
+
|
|
1339
|
+
## [5.11.6](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.5...v5.11.6) (2023-12-02)
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
### Bug Fixes
|
|
1343
|
+
|
|
1344
|
+
* npm install dev after creating npm shrinkwrap ([148d3cd](https://github.com/appium/appium-xcuitest-driver/commit/148d3cd9bfa12c3caa158dd4083dd5e571261fe6))
|
|
1345
|
+
|
|
1346
|
+
## [5.11.5](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.4...v5.11.5) (2023-12-02)
|
|
1347
|
+
|
|
1348
|
+
|
|
1349
|
+
### Bug Fixes
|
|
1350
|
+
|
|
1351
|
+
* tune to minimize release module ([#2280](https://github.com/appium/appium-xcuitest-driver/issues/2280)) ([c82bafc](https://github.com/appium/appium-xcuitest-driver/commit/c82bafc5ce7e630f82dff49d314a6de7233b867d))
|
|
1352
|
+
|
|
1353
|
+
## [5.11.4](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.3...v5.11.4) (2023-12-02)
|
|
1354
|
+
|
|
1355
|
+
|
|
1356
|
+
### Bug Fixes
|
|
1357
|
+
|
|
1358
|
+
* tune publish.js.yml further ([077935d](https://github.com/appium/appium-xcuitest-driver/commit/077935db0d6795761d9b6498d4a0c346f0400ec1))
|
|
1359
|
+
* tune publish.js.yml further again ([7fbada9](https://github.com/appium/appium-xcuitest-driver/commit/7fbada98971976183200c040945b3ae110ea948a))
|
|
1360
|
+
|
|
1361
|
+
## [5.11.3](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.2...v5.11.3) (2023-12-02)
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
### Bug Fixes
|
|
1365
|
+
|
|
1366
|
+
* tune publish.js.yml further ([9108c75](https://github.com/appium/appium-xcuitest-driver/commit/9108c757c7b06b986bb75646b9af90d43ad8973f))
|
|
1367
|
+
|
|
1368
|
+
## [5.11.2](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.1...v5.11.2) (2023-12-02)
|
|
1369
|
+
|
|
1370
|
+
|
|
1371
|
+
### Bug Fixes
|
|
1372
|
+
|
|
1373
|
+
* tune release script ([#2278](https://github.com/appium/appium-xcuitest-driver/issues/2278)) ([b94cb19](https://github.com/appium/appium-xcuitest-driver/commit/b94cb19d5184e84cb572f07533eec7ddca6cad67))
|
|
1374
|
+
|
|
1375
|
+
## [5.11.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.11.0...v5.11.1) (2023-12-02)
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
### Bug Fixes
|
|
1379
|
+
|
|
1380
|
+
* tune shrinkwrap for a release ([#2277](https://github.com/appium/appium-xcuitest-driver/issues/2277)) ([33726f2](https://github.com/appium/appium-xcuitest-driver/commit/33726f20905c589ecf56faeae030eda8ce33e78f))
|
|
1381
|
+
|
|
1382
|
+
## [5.11.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.10.2...v5.11.0) (2023-11-26)
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
### Features
|
|
1386
|
+
|
|
1387
|
+
* set location permission via xcrun simctl privacy ([#2275](https://github.com/appium/appium-xcuitest-driver/issues/2275)) ([3f6979b](https://github.com/appium/appium-xcuitest-driver/commit/3f6979b6500f0a5b048b6fe642f9cbebb78e32ca))
|
|
1388
|
+
|
|
1389
|
+
## [5.10.2](https://github.com/appium/appium-xcuitest-driver/compare/v5.10.1...v5.10.2) (2023-11-24)
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
### Reverts
|
|
1393
|
+
|
|
1394
|
+
* Revert "fix: tune shrinkwrap" ([46fa202](https://github.com/appium/appium-xcuitest-driver/commit/46fa202af757a92a57c8eb913183b0329343660c))
|
|
1395
|
+
|
|
1396
|
+
## [5.10.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.10.0...v5.10.1) (2023-11-24)
|
|
1397
|
+
|
|
1398
|
+
|
|
1399
|
+
### Bug Fixes
|
|
1400
|
+
|
|
1401
|
+
* tune shrinkwrap ([aca035a](https://github.com/appium/appium-xcuitest-driver/commit/aca035afaf3aac5402ddd2c82c9f9a915e49450d))
|
|
1402
|
+
|
|
1403
|
+
## [5.10.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.9.1...v5.10.0) (2023-11-24)
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
### Features
|
|
1407
|
+
|
|
1408
|
+
* elementAttributes added in [#2274](https://github.com/appium/appium-xcuitest-driver/issues/2274) ([1f46269](https://github.com/appium/appium-xcuitest-driver/commit/1f462697f7d5cab213f87244f7ddc00cfd2e2e98))
|
|
1409
|
+
|
|
1410
|
+
|
|
1411
|
+
### Miscellaneous Chores
|
|
1412
|
+
|
|
1413
|
+
* Bump WDA version to 5.15.2 ([#2274](https://github.com/appium/appium-xcuitest-driver/issues/2274)) ([f6ff336](https://github.com/appium/appium-xcuitest-driver/commit/f6ff336e9093a8acffa03e6cbd8af94eacb1c0f3))
|
|
1414
|
+
* **deps-dev:** bump @commitlint/cli from 18.4.2 to 18.4.3 ([#2265](https://github.com/appium/appium-xcuitest-driver/issues/2265)) ([87f15da](https://github.com/appium/appium-xcuitest-driver/commit/87f15da2a8e2eb0a69bd63c0f82c5f36566a8801))
|
|
1415
|
+
* **deps-dev:** bump @types/chai from 4.3.10 to 4.3.11 ([02c96bb](https://github.com/appium/appium-xcuitest-driver/commit/02c96bb2182217fd12d93fc64168fdeae617ae2e))
|
|
1416
|
+
* **deps-dev:** bump @types/mocha from 10.0.4 to 10.0.5 ([8eb4326](https://github.com/appium/appium-xcuitest-driver/commit/8eb432604f0350d866ab4d46acf09ff7b251ba52))
|
|
1417
|
+
* **deps-dev:** bump @types/node from 20.9.2 to 20.9.3 ([3f75af0](https://github.com/appium/appium-xcuitest-driver/commit/3f75af09f7728d830070e0b7c97111cb78e6cfd6))
|
|
1418
|
+
* **deps-dev:** bump @types/node from 20.9.3 to 20.9.4 ([#2264](https://github.com/appium/appium-xcuitest-driver/issues/2264)) ([ab03aa5](https://github.com/appium/appium-xcuitest-driver/commit/ab03aa5bef36ce0d263168383eacd77329988747))
|
|
1419
|
+
* **deps-dev:** bump @typescript-eslint/eslint-plugin ([efee840](https://github.com/appium/appium-xcuitest-driver/commit/efee8409a420c156838aaff0e9c23d7d647e49a3))
|
|
1420
|
+
* **deps-dev:** bump type-fest from 4.8.1 to 4.8.2 ([9a2cfca](https://github.com/appium/appium-xcuitest-driver/commit/9a2cfca66dfc6854b850c86dde3e816210634e61))
|
|
1421
|
+
* **deps-dev:** bump webdriverio from 8.23.1 to 8.24.0 ([cd13fb9](https://github.com/appium/appium-xcuitest-driver/commit/cd13fb9aae1045916b13445b379e8b2e3ed4d54b))
|
|
1422
|
+
* **deps:** bump appium-ios-device from 2.7.9 to 2.7.10 ([#2250](https://github.com/appium/appium-xcuitest-driver/issues/2250)) ([62a7baf](https://github.com/appium/appium-xcuitest-driver/commit/62a7baf30a7960d9f98bd6dba2155fd9382ffce6))
|
|
1423
|
+
* **deps:** bump appium-webdriveragent from 5.14.0 to 5.15.2 ([64b14c9](https://github.com/appium/appium-xcuitest-driver/commit/64b14c93fcf07725e3c1e788eb708b5ab860a5a5))
|
|
1424
|
+
* **deps:** bump css-selector-parser from 3.0.0 to 3.0.2 ([#2260](https://github.com/appium/appium-xcuitest-driver/issues/2260)) ([fcfb181](https://github.com/appium/appium-xcuitest-driver/commit/fcfb1818147c6b39869117125ab9c5627a954c5d))
|
|
1425
|
+
* **deps:** bump lru-cache from 10.0.2 to 10.0.3 ([#2249](https://github.com/appium/appium-xcuitest-driver/issues/2249)) ([107a401](https://github.com/appium/appium-xcuitest-driver/commit/107a401d329d949e8519d6faabb8e7612a18d777))
|
|
1426
|
+
* **deps:** bump teen_process and @types/teen_process ([#2258](https://github.com/appium/appium-xcuitest-driver/issues/2258)) ([da34751](https://github.com/appium/appium-xcuitest-driver/commit/da347517e4e749491d5b834565daba440a10ce6a))
|
|
1427
|
+
* Disable package-lock creation ([#2273](https://github.com/appium/appium-xcuitest-driver/issues/2273)) ([c0b5cf8](https://github.com/appium/appium-xcuitest-driver/commit/c0b5cf84d6079b5fcf6f76869d7844a79f7feda3))
|
|
1428
|
+
* lock typescript version ([5077e23](https://github.com/appium/appium-xcuitest-driver/commit/5077e232bc2369b7368057a33d7eb3a3a5fbb764))
|
|
1429
|
+
|
|
1430
|
+
## [5.9.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.9.0...v5.9.1) (2023-11-21)
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
### Bug Fixes
|
|
1434
|
+
|
|
1435
|
+
* assign deeply cloned processArguments for starting a WDA session ([#2245](https://github.com/appium/appium-xcuitest-driver/issues/2245)) ([2e6f273](https://github.com/appium/appium-xcuitest-driver/commit/2e6f273e8533cf02284079d1fea919a7062fd2cc))
|
|
1436
|
+
|
|
1437
|
+
## [5.9.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.8.2...v5.9.0) (2023-11-19)
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
### Features
|
|
1441
|
+
|
|
1442
|
+
* add * in additionalWebviewBundleIds cap ([#2244](https://github.com/appium/appium-xcuitest-driver/issues/2244)) ([74874f5](https://github.com/appium/appium-xcuitest-driver/commit/74874f536975337a6608633de8aa9435a0edd52a))
|
|
1443
|
+
|
|
1444
|
+
## [5.8.2](https://github.com/appium/appium-xcuitest-driver/compare/v5.8.1...v5.8.2) (2023-11-08)
|
|
1445
|
+
|
|
1446
|
+
|
|
1447
|
+
### Bug Fixes
|
|
1448
|
+
|
|
1449
|
+
* to push a new release with updated npm-shrinkwrap ([b0dfc39](https://github.com/appium/appium-xcuitest-driver/commit/b0dfc393316b6573a7b15855d97d16f29570eb9b))
|
|
1450
|
+
|
|
1451
|
+
## [5.8.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.8.0...v5.8.1) (2023-11-01)
|
|
1452
|
+
|
|
1453
|
+
|
|
1454
|
+
### Bug Fixes
|
|
1455
|
+
|
|
1456
|
+
* Sync package-lock ([09be06f](https://github.com/appium/appium-xcuitest-driver/commit/09be06f7c13f3aaba5a4f1b8552e0dbb356ec200))
|
|
1457
|
+
|
|
1458
|
+
## [5.8.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.7.0...v5.8.0) (2023-10-30)
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
### Features
|
|
1462
|
+
|
|
1463
|
+
* Add 'mobile: keys' extension ([#2156](https://github.com/appium/appium-xcuitest-driver/issues/2156)) ([db39d66](https://github.com/appium/appium-xcuitest-driver/commit/db39d66e6605d22d7b8d1150a9612b74cb962f79))
|
|
1464
|
+
|
|
1465
|
+
## [5.7.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.6.0...v5.7.0) (2023-10-13)
|
|
1466
|
+
|
|
1467
|
+
|
|
1468
|
+
### Features
|
|
1469
|
+
|
|
1470
|
+
* Add 'mobile: calibrateWebToRealCoordinatesTranslation' API ([#2071](https://github.com/appium/appium-xcuitest-driver/issues/2071)) ([b3fa78d](https://github.com/appium/appium-xcuitest-driver/commit/b3fa78d69bdaec03435e02a7e4ffb0b80a9bbde3))
|
|
1471
|
+
|
|
1472
|
+
## [5.6.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.5.0...v5.6.0) (2023-10-03)
|
|
1473
|
+
|
|
1474
|
+
|
|
1475
|
+
### Features
|
|
1476
|
+
|
|
1477
|
+
* use mobile:setSimulatedLocation in setGeoLocation for ios 17 ([#2062](https://github.com/appium/appium-xcuitest-driver/issues/2062)) ([69dfab9](https://github.com/appium/appium-xcuitest-driver/commit/69dfab95dc7ba1506e2c1fe2a59e4e4be6f7b113))
|
|
1478
|
+
|
|
1479
|
+
## [5.5.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.4.1...v5.5.0) (2023-10-02)
|
|
1480
|
+
|
|
1481
|
+
|
|
1482
|
+
### Features
|
|
1483
|
+
|
|
1484
|
+
* uninstall the test app once and install that again when MismatchedApplicationIdentifierEntitlement installation error occurs ([#2050](https://github.com/appium/appium-xcuitest-driver/issues/2050)) ([0c561f5](https://github.com/appium/appium-xcuitest-driver/commit/0c561f514822965166e6f87ee9725ad28542f185))
|
|
1485
|
+
|
|
1486
|
+
## [5.4.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.4.0...v5.4.1) (2023-10-01)
|
|
1487
|
+
|
|
1488
|
+
|
|
1489
|
+
### Bug Fixes
|
|
1490
|
+
|
|
1491
|
+
* get bundleId for other apps before calling installation ([#2054](https://github.com/appium/appium-xcuitest-driver/issues/2054)) ([4feaf33](https://github.com/appium/appium-xcuitest-driver/commit/4feaf336dae242605543fb84d5c7b40aa5103470))
|
|
1492
|
+
|
|
1493
|
+
## [5.4.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.3.3...v5.4.0) (2023-09-26)
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
### Features
|
|
1497
|
+
|
|
1498
|
+
* Add clearApp extension ([#2031](https://github.com/appium/appium-xcuitest-driver/issues/2031)) ([ae0afdc](https://github.com/appium/appium-xcuitest-driver/commit/ae0afdcafabbb8164b3996627c7c3fc0f788eaf3))
|
|
1499
|
+
|
|
1500
|
+
## [5.3.3](https://github.com/appium/appium-xcuitest-driver/compare/v5.3.2...v5.3.3) (2023-09-24)
|
|
1501
|
+
|
|
1502
|
+
|
|
1503
|
+
### Bug Fixes
|
|
1504
|
+
|
|
1505
|
+
* try fix release to include npm-shrinkwrap.json ([#2023](https://github.com/appium/appium-xcuitest-driver/issues/2023)) ([57fc5b8](https://github.com/appium/appium-xcuitest-driver/commit/57fc5b8dca469887cd196aee95d4230c2e21e889)), closes [#2022](https://github.com/appium/appium-xcuitest-driver/issues/2022)
|
|
1506
|
+
|
|
1507
|
+
## [5.3.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.3.0...v5.3.1) (2023-09-23)
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
### Bug Fixes
|
|
1511
|
+
|
|
1512
|
+
* bump wda (5.9.0, 5.9.1) and simulator(5.3.2) ([#2021](https://github.com/appium/appium-xcuitest-driver/issues/2021)) ([f6f78f5](https://github.com/appium/appium-xcuitest-driver/commit/f6f78f579da4bf439a9a2011ab02c1f9a105a1f3))
|
|
1513
|
+
|
|
1514
|
+
## [5.3.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.2.1...v5.3.0) (2023-09-20)
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
### Features
|
|
1518
|
+
|
|
1519
|
+
* add capability to run special input event triggering after send keys ([d559803](https://github.com/appium/appium-xcuitest-driver/commit/d5598039b52dc6c475b2cbb3c5c5049cc673a866)), closes [appium/appium#19052](https://github.com/appium/appium/issues/19052)
|
|
1520
|
+
|
|
1521
|
+
## [5.2.1](https://github.com/appium/appium-xcuitest-driver/compare/v5.2.0...v5.2.1) (2023-09-19)
|
|
1522
|
+
|
|
1523
|
+
|
|
1524
|
+
### Bug Fixes
|
|
1525
|
+
|
|
1526
|
+
* terminateApp with devicectl for iOS 17 ([#1997](https://github.com/appium/appium-xcuitest-driver/issues/1997)) ([16c7319](https://github.com/appium/appium-xcuitest-driver/commit/16c73198397495f235cc49f6fb978050a9e2f49d))
|
|
1527
|
+
|
|
1528
|
+
## [5.2.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.1.0...v5.2.0) (2023-09-16)
|
|
1529
|
+
|
|
1530
|
+
|
|
1531
|
+
### Features
|
|
1532
|
+
|
|
1533
|
+
* support pageSourceExcludedAttributes ([#1996](https://github.com/appium/appium-xcuitest-driver/issues/1996)) ([4bcea84](https://github.com/appium/appium-xcuitest-driver/commit/4bcea840148aa126579603d8417f77e3437db312))
|
|
1534
|
+
|
|
1535
|
+
## [5.1.0](https://github.com/appium/appium-xcuitest-driver/compare/v5.0.0...v5.1.0) (2023-09-14)
|
|
1536
|
+
|
|
1537
|
+
|
|
1538
|
+
### Features
|
|
1539
|
+
|
|
1540
|
+
* add autoFillPasswords capability ([#1972](https://github.com/appium/appium-xcuitest-driver/issues/1972)) ([85aaa7f](https://github.com/appium/appium-xcuitest-driver/commit/85aaa7f62a5f882ebcaabe1c2c2272d5c9217481))
|
|
1541
|
+
* dummy feat commit to run the auto release ([#1983](https://github.com/appium/appium-xcuitest-driver/issues/1983)) ([5916712](https://github.com/appium/appium-xcuitest-driver/commit/59167127f618dc350c9bdcf414c23c008d17169f))
|
|
1542
|
+
|
|
1543
|
+
## [5.0.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.35.0...v5.0.0) (2023-09-05)
|
|
1544
|
+
|
|
1545
|
+
### Code Refactoring
|
|
1546
|
+
|
|
1547
|
+
* Deprecate obsolete endpoints ([#1955](https://github.com/appium/appium-xcuitest-driver/issues/1955))
|
|
1548
|
+
* The includeDeviceCapsToSessionInfo capability has no effect now
|
|
1549
|
+
* The obsolete getSession API does not return any extra driver-specific data anymore (e.g. statBarHeight, pixelRatio, viewportRect)
|
|
1550
|
+
* Obsolete reset, launchApp and closeApp APIs now throw errors on invocation
|
|
1551
|
+
|
|
1552
|
+
## [4.35.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.34.1...v4.35.0) (2023-08-25)
|
|
1553
|
+
|
|
1554
|
+
|
|
1555
|
+
### Features
|
|
1556
|
+
|
|
1557
|
+
* Include 'hittable' attribute ([#1918](https://github.com/appium/appium-xcuitest-driver/issues/1918)) ([b56a3d4](https://github.com/appium/appium-xcuitest-driver/commit/b56a3d4e06e3a345cdcfee9c8d8b174e6063e3ca))
|
|
1558
|
+
|
|
1559
|
+
## [4.34.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.34.0...v4.34.1) (2023-08-21)
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
|
+
### Bug Fixes
|
|
1563
|
+
|
|
1564
|
+
* Update glob options ([4a7a963](https://github.com/appium/appium-xcuitest-driver/commit/4a7a96319c653350b21f1836cba8afce0290a983))
|
|
1565
|
+
|
|
1566
|
+
## [4.34.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.33.2...v4.34.0) (2023-08-16)
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
|
+
### Features
|
|
1570
|
+
|
|
1571
|
+
* use new selenium atoms from remote debugger ([2707c01](https://github.com/appium/appium-xcuitest-driver/commit/2707c015a8990f0d666b35fefcfe15b368f9c605))
|
|
1572
|
+
|
|
1573
|
+
## [4.33.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.33.1...v4.33.2) (2023-08-04)
|
|
1574
|
+
|
|
1575
|
+
|
|
1576
|
+
### Bug Fixes
|
|
1577
|
+
|
|
1578
|
+
* Args sequence for mobileTapWithNumberOfTaps ([4cb7430](https://github.com/appium/appium-xcuitest-driver/commit/4cb7430afae40307601711907fee89afb459ee48))
|
|
1579
|
+
|
|
1580
|
+
## [4.33.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.33.0...v4.33.1) (2023-08-04)
|
|
1581
|
+
|
|
1582
|
+
|
|
1583
|
+
### Bug Fixes
|
|
1584
|
+
|
|
1585
|
+
* Args order for mobileTapWithNumberOfTaps call ([#1854](https://github.com/appium/appium-xcuitest-driver/issues/1854)) ([27ec7b3](https://github.com/appium/appium-xcuitest-driver/commit/27ec7b38b0b509cbf83506d44cdc376c3d0bbf6a))
|
|
1586
|
+
|
|
1587
|
+
## [4.33.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.25...v4.33.0) (2023-08-02)
|
|
1588
|
+
|
|
1589
|
+
|
|
1590
|
+
### Features
|
|
1591
|
+
|
|
1592
|
+
* Lock only major package versions ([#1835](https://github.com/appium/appium-xcuitest-driver/issues/1835)) ([d640d77](https://github.com/appium/appium-xcuitest-driver/commit/d640d770ac5d9899b22ce6f6a62222bff1d10111))
|
|
1593
|
+
|
|
1594
|
+
## [4.32.25](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.24...v4.32.25) (2023-08-02)
|
|
1595
|
+
|
|
1596
|
+
|
|
1597
|
+
### Bug Fixes
|
|
1598
|
+
|
|
1599
|
+
* **deps:** update dependency lru-cache to v10 ([#1776](https://github.com/appium/appium-xcuitest-driver/issues/1776)) ([2079a56](https://github.com/appium/appium-xcuitest-driver/commit/2079a56578fbdd5a09220caff1c1f1e7f8ec4254))
|
|
1600
|
+
|
|
1601
|
+
## [4.32.24](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.23...v4.32.24) (2023-08-01)
|
|
1602
|
+
|
|
1603
|
+
|
|
1604
|
+
### Bug Fixes
|
|
1605
|
+
|
|
1606
|
+
* **deps:** update dependency appium-ios-simulator to v5.1.3 ([#1830](https://github.com/appium/appium-xcuitest-driver/issues/1830)) ([f71f9a0](https://github.com/appium/appium-xcuitest-driver/commit/f71f9a00868d8a69657a8fb6340418f9c9ab2e4a))
|
|
1607
|
+
|
|
1608
|
+
## [4.32.23](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.22...v4.32.23) (2023-07-21)
|
|
1609
|
+
|
|
1610
|
+
|
|
1611
|
+
### Bug Fixes
|
|
1612
|
+
|
|
1613
|
+
* isAppInstalled in Xcode 15 env for simulator ([#1822](https://github.com/appium/appium-xcuitest-driver/issues/1822)) ([78f2ef2](https://github.com/appium/appium-xcuitest-driver/commit/78f2ef2fe2b7ace3d6ddadb3157f338a0f6c4cb3))
|
|
1614
|
+
|
|
1615
|
+
## [4.32.22](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.21...v4.32.22) (2023-07-20)
|
|
1616
|
+
|
|
1617
|
+
|
|
1618
|
+
### Bug Fixes
|
|
1619
|
+
|
|
1620
|
+
* **deps:** update dependency @xmldom/xmldom to v0.8.10 ([598aafe](https://github.com/appium/appium-xcuitest-driver/commit/598aafebd808c654ed182e52e4a09be193182554))
|
|
1621
|
+
|
|
1622
|
+
## [4.32.21](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.20...v4.32.21) (2023-07-16)
|
|
1623
|
+
|
|
1624
|
+
|
|
1625
|
+
### Bug Fixes
|
|
1626
|
+
|
|
1627
|
+
* **deps:** update dependency appium-webdriveragent to v5.6.0 for waitForQuiescence in in /wda/apps/launch ([#1817](https://github.com/appium/appium-xcuitest-driver/issues/1817)) ([9e4ded1](https://github.com/appium/appium-xcuitest-driver/commit/9e4ded1fe475d7aa83c638b1d2ca3e79936e7fc5))
|
|
1628
|
+
|
|
1629
|
+
## [4.32.20](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.19...v4.32.20) (2023-07-13)
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
### Bug Fixes
|
|
1633
|
+
|
|
1634
|
+
* **deps:** update dependency @xmldom/xmldom to v0.8.9 ([a5312c6](https://github.com/appium/appium-xcuitest-driver/commit/a5312c6bf1fd4fe2a2f5722e776b4ac7f17248a8))
|
|
1635
|
+
|
|
1636
|
+
## [4.32.19](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.18...v4.32.19) (2023-07-09)
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
### Bug Fixes
|
|
1640
|
+
|
|
1641
|
+
* **deps:** update dependency semver to v7.5.4 ([a3bed9e](https://github.com/appium/appium-xcuitest-driver/commit/a3bed9e3a3fb3326556526e0046c6a67a9026ac8))
|
|
1642
|
+
|
|
1643
|
+
## [4.32.18](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.17...v4.32.18) (2023-07-09)
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
|
+
### Bug Fixes
|
|
1647
|
+
|
|
1648
|
+
* **deps:** update dependency node-simctl to v7.1.17 ([6d52868](https://github.com/appium/appium-xcuitest-driver/commit/6d52868be4d449a610a5ec86f3972a5736714d42))
|
|
1649
|
+
|
|
1650
|
+
## [4.32.17](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.16...v4.32.17) (2023-07-08)
|
|
1651
|
+
|
|
1652
|
+
|
|
1653
|
+
### Bug Fixes
|
|
1654
|
+
|
|
1655
|
+
* **deps:** update dependency appium-xcode to v5.1.4 ([b2d0960](https://github.com/appium/appium-xcuitest-driver/commit/b2d0960d19757d72c48b6fe807181c9a4aa82cde))
|
|
1656
|
+
|
|
1657
|
+
## [4.32.16](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.15...v4.32.16) (2023-07-08)
|
|
1658
|
+
|
|
1659
|
+
|
|
1660
|
+
### Bug Fixes
|
|
1661
|
+
|
|
1662
|
+
* **deps:** update dependency appium-webdriveragent to v5.5.2 ([cebc357](https://github.com/appium/appium-xcuitest-driver/commit/cebc357c6da924e9d440f85af0ad6dcfa4e3df1a))
|
|
1663
|
+
|
|
1664
|
+
## [4.32.15](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.14...v4.32.15) (2023-07-08)
|
|
1665
|
+
|
|
1666
|
+
|
|
1667
|
+
### Bug Fixes
|
|
1668
|
+
|
|
1669
|
+
* **deps:** update dependency appium-remote-debugger to v9.1.17 ([519cc40](https://github.com/appium/appium-xcuitest-driver/commit/519cc40528c3bfc72e45b55d5210401db8fe609b))
|
|
1670
|
+
|
|
1671
|
+
## [4.32.14](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.13...v4.32.14) (2023-07-07)
|
|
1672
|
+
|
|
1673
|
+
|
|
1674
|
+
### Bug Fixes
|
|
1675
|
+
|
|
1676
|
+
* **deps:** update dependency appium-ios-simulator to v5.1.1 ([ce0d917](https://github.com/appium/appium-xcuitest-driver/commit/ce0d91780003fa4dfd7231ff75fdc9178b804f30))
|
|
1677
|
+
|
|
1678
|
+
## [4.32.13](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.12...v4.32.13) (2023-07-07)
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
### Bug Fixes
|
|
1682
|
+
|
|
1683
|
+
* **deps:** update dependency appium-ios-device to v2.5.4 ([1b14568](https://github.com/appium/appium-xcuitest-driver/commit/1b145684920ab85c76b1808c5b293c6390a5f53c))
|
|
1684
|
+
|
|
1685
|
+
## [4.32.12](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.11...v4.32.12) (2023-07-07)
|
|
1686
|
+
|
|
1687
|
+
|
|
1688
|
+
### Bug Fixes
|
|
1689
|
+
|
|
1690
|
+
* **deps:** update dependency appium-idb to v1.6.13 ([9f0f26c](https://github.com/appium/appium-xcuitest-driver/commit/9f0f26c7da9ea3ca6a099afa6e00d82cec3cb2d1))
|
|
1691
|
+
|
|
1692
|
+
## [4.32.11](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.10...v4.32.11) (2023-07-01)
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
### Reverts
|
|
1696
|
+
|
|
1697
|
+
* Revert "chore(workflows): pin dependencies (#1773)" (#1794) ([abb6de9](https://github.com/appium/appium-xcuitest-driver/commit/abb6de9e135cdc66878f61665ff9d2290e070666)), closes [#1773](https://github.com/appium/appium-xcuitest-driver/issues/1773) [#1794](https://github.com/appium/appium-xcuitest-driver/issues/1794)
|
|
1698
|
+
|
|
1699
|
+
|
|
1700
|
+
### Code Refactoring
|
|
1701
|
+
|
|
1702
|
+
* Tune temporary simulator creation logic ([#1790](https://github.com/appium/appium-xcuitest-driver/issues/1790)) ([9ac2f6a](https://github.com/appium/appium-xcuitest-driver/commit/9ac2f6a52348230f7d4c425722a4ef07c8ac4043))
|
|
1703
|
+
|
|
1704
|
+
## [4.32.10](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.9...v4.32.10) (2023-06-27)
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
### Bug Fixes
|
|
1708
|
+
|
|
1709
|
+
* **deps:** update dependency css-selector-parser to v2.3.2 ([77dbcee](https://github.com/appium/appium-xcuitest-driver/commit/77dbceefbc10f44ab5bc0e9a50f5aa3c781064d4))
|
|
1710
|
+
|
|
1711
|
+
## [4.32.9](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.8...v4.32.9) (2023-06-24)
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
### Bug Fixes
|
|
1715
|
+
|
|
1716
|
+
* **deps:** update dependency appium-ios-simulator to v5.1.0 ([4810e6f](https://github.com/appium/appium-xcuitest-driver/commit/4810e6f853780ad195702b208169b6ad958f72ca))
|
|
1717
|
+
|
|
1718
|
+
## [4.32.8](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.7...v4.32.8) (2023-06-23)
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
### Bug Fixes
|
|
1722
|
+
|
|
1723
|
+
* Copypaste in mobile method names ([#1783](https://github.com/appium/appium-xcuitest-driver/issues/1783)) ([710d246](https://github.com/appium/appium-xcuitest-driver/commit/710d24631b052f9499573e65ca24b34e238b7c02))
|
|
1724
|
+
|
|
1725
|
+
## [4.32.7](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.6...v4.32.7) (2023-06-23)
|
|
1726
|
+
|
|
1727
|
+
|
|
1728
|
+
### Bug Fixes
|
|
1729
|
+
|
|
1730
|
+
* **deps:** update dependency semver to v7.5.3 ([5f35e37](https://github.com/appium/appium-xcuitest-driver/commit/5f35e37946b8e0643b7fc5117858ee98f3219327))
|
|
1731
|
+
|
|
1732
|
+
## [4.32.6](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.5...v4.32.6) (2023-06-23)
|
|
1733
|
+
|
|
1734
|
+
|
|
1735
|
+
### Bug Fixes
|
|
1736
|
+
|
|
1737
|
+
* trigger release based on package.json update ([b40c8f4](https://github.com/appium/appium-xcuitest-driver/commit/b40c8f45e4aa9ca4cc0da8ace0fc83f1c79b691a))
|
|
1738
|
+
|
|
1739
|
+
## [4.32.5](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.4...v4.32.5) (2023-06-17)
|
|
1740
|
+
|
|
1741
|
+
|
|
1742
|
+
### Bug Fixes
|
|
1743
|
+
|
|
1744
|
+
* **deps:** update dependency semver to v7.5.2 ([d6c236d](https://github.com/appium/appium-xcuitest-driver/commit/d6c236da158dc6fe50a20e812917cc4dc132447b))
|
|
1745
|
+
|
|
1746
|
+
## [4.32.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.3...v4.32.4) (2023-06-16)
|
|
1747
|
+
|
|
1748
|
+
|
|
1749
|
+
### Bug Fixes
|
|
1750
|
+
|
|
1751
|
+
* **deps:** update dependency css-selector-parser to v2 ([#1759](https://github.com/appium/appium-xcuitest-driver/issues/1759)) ([0426349](https://github.com/appium/appium-xcuitest-driver/commit/0426349da313127111c19d4de44151ab45ecb64f))
|
|
1752
|
+
|
|
1753
|
+
## [4.32.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.2...v4.32.3) (2023-06-16)
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
### Bug Fixes
|
|
1757
|
+
|
|
1758
|
+
* **deps:** update dependency appium-webdriveragent to v5.5.1 ([#1770](https://github.com/appium/appium-xcuitest-driver/issues/1770)) ([e1c1bc9](https://github.com/appium/appium-xcuitest-driver/commit/e1c1bc932c9d550d1aaa1e82b6638eea8952c616))
|
|
1759
|
+
|
|
1760
|
+
## [4.32.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.1...v4.32.2) (2023-06-14)
|
|
1761
|
+
|
|
1762
|
+
|
|
1763
|
+
### Bug Fixes
|
|
1764
|
+
|
|
1765
|
+
* **deps:** update dependency node-simctl to v7.1.16 ([#1743](https://github.com/appium/appium-xcuitest-driver/issues/1743)) ([33eced1](https://github.com/appium/appium-xcuitest-driver/commit/33eced1a309091bc3c7826c5a2fce36c2c9e87dd))
|
|
1766
|
+
|
|
1767
|
+
## [4.32.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.32.0...v4.32.1) (2023-06-14)
|
|
1768
|
+
|
|
1769
|
+
|
|
1770
|
+
### Bug Fixes
|
|
1771
|
+
|
|
1772
|
+
* **deps:** update dependency teen_process to v2.0.4 ([#1758](https://github.com/appium/appium-xcuitest-driver/issues/1758)) ([a95e08a](https://github.com/appium/appium-xcuitest-driver/commit/a95e08a40a2d8653b4bc2162102a681396f25eb5))
|
|
1773
|
+
|
|
1774
|
+
## [4.32.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.31.0...v4.32.0) (2023-06-13)
|
|
1775
|
+
|
|
1776
|
+
|
|
1777
|
+
### Features
|
|
1778
|
+
|
|
1779
|
+
* Add 'mobile: performAccessibilityAudit' extension ([#1754](https://github.com/appium/appium-xcuitest-driver/issues/1754)) ([cf2bb1b](https://github.com/appium/appium-xcuitest-driver/commit/cf2bb1b70e11a23438526b62018c892c29123cc8))
|
|
1780
|
+
|
|
1781
|
+
|
|
1782
|
+
### Bug Fixes
|
|
1783
|
+
|
|
1784
|
+
* Only request chosen application attributes ([#1753](https://github.com/appium/appium-xcuitest-driver/issues/1753)) ([a8caa79](https://github.com/appium/appium-xcuitest-driver/commit/a8caa79269dc525a80c70cdc58f21789f39e8eba))
|
|
1785
|
+
|
|
1786
|
+
## [4.31.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.9...v4.31.0) (2023-06-10)
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
### Features
|
|
1790
|
+
|
|
1791
|
+
* bump WDA for Xcode 15 ([#1747](https://github.com/appium/appium-xcuitest-driver/issues/1747)) ([cc4ccdd](https://github.com/appium/appium-xcuitest-driver/commit/cc4ccdd606dcf758d770c424a174e3545ef1170e))
|
|
1792
|
+
|
|
1793
|
+
## [4.30.9](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.8...v4.30.9) (2023-06-09)
|
|
1794
|
+
|
|
1795
|
+
|
|
1796
|
+
### Bug Fixes
|
|
1797
|
+
|
|
1798
|
+
* **deps:** update dependency appium-webdriveragent to v5.3.2 ([#1737](https://github.com/appium/appium-xcuitest-driver/issues/1737)) ([77b61c6](https://github.com/appium/appium-xcuitest-driver/commit/77b61c60fbc1987abfaf61d170c8182a1396279a))
|
|
1799
|
+
|
|
1800
|
+
## [4.30.8](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.7...v4.30.8) (2023-06-09)
|
|
1801
|
+
|
|
1802
|
+
|
|
1803
|
+
### Bug Fixes
|
|
1804
|
+
|
|
1805
|
+
* **deps:** update dependency appium-ios-simulator to v5.0.9 ([#1735](https://github.com/appium/appium-xcuitest-driver/issues/1735)) ([d6960ba](https://github.com/appium/appium-xcuitest-driver/commit/d6960ba5c3f0ce91aca4168abb59a03db990ba6a))
|
|
1806
|
+
|
|
1807
|
+
## [4.30.7](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.6...v4.30.7) (2023-06-08)
|
|
1808
|
+
|
|
1809
|
+
|
|
1810
|
+
### Bug Fixes
|
|
1811
|
+
|
|
1812
|
+
* **deps:** update dependency appium-idb to v1.6.12 ([#1733](https://github.com/appium/appium-xcuitest-driver/issues/1733)) ([aa50371](https://github.com/appium/appium-xcuitest-driver/commit/aa50371fc17636e1b1cf0091fd13ebc74e88abb9))
|
|
1813
|
+
* **deps:** update dependency appium-remote-debugger to v9.1.16 ([#1736](https://github.com/appium/appium-xcuitest-driver/issues/1736)) ([2657995](https://github.com/appium/appium-xcuitest-driver/commit/265799597fbe538e265f35e2729e1334c20f778b))
|
|
1814
|
+
* **deps:** update dependency appium-xcode to v5.1.2 ([#1738](https://github.com/appium/appium-xcuitest-driver/issues/1738)) ([e315219](https://github.com/appium/appium-xcuitest-driver/commit/e315219cf29838fe8d8855d22ce4ba4a4449c3ba))
|
|
1815
|
+
|
|
1816
|
+
## [4.30.6](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.5...v4.30.6) (2023-06-08)
|
|
1817
|
+
|
|
1818
|
+
|
|
1819
|
+
### Bug Fixes
|
|
1820
|
+
|
|
1821
|
+
* **deps:** update dependency appium-ios-device to v2.5.3 ([2ea3183](https://github.com/appium/appium-xcuitest-driver/commit/2ea31830fa7afca3f7d3f2953702f5d3f92946ca))
|
|
1822
|
+
|
|
1823
|
+
## [4.30.5](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.4...v4.30.5) (2023-06-06)
|
|
1824
|
+
|
|
1825
|
+
|
|
1826
|
+
### Bug Fixes
|
|
1827
|
+
|
|
1828
|
+
* Support network devices with py-ios-device + add missing method map ([#1727](https://github.com/appium/appium-xcuitest-driver/issues/1727)) ([c81c606](https://github.com/appium/appium-xcuitest-driver/commit/c81c606a95274494dba4f27b9895f7192ddce3cc))
|
|
1829
|
+
|
|
1830
|
+
## [4.30.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.3...v4.30.4) (2023-06-06)
|
|
1831
|
+
|
|
1832
|
+
|
|
1833
|
+
### Bug Fixes
|
|
1834
|
+
|
|
1835
|
+
* **deps:** update dependency appium-webdriveragent to v5.3.1 for Xcode 15 build ([#1729](https://github.com/appium/appium-xcuitest-driver/issues/1729)) ([629b971](https://github.com/appium/appium-xcuitest-driver/commit/629b9710d6e0d4fff86e4452630d80742911e7e5))
|
|
1836
|
+
|
|
1837
|
+
## [4.30.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.2...v4.30.3) (2023-06-03)
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
### Bug Fixes
|
|
1841
|
+
|
|
1842
|
+
* Align initial atom wait timeout with alerts check interval ([#1720](https://github.com/appium/appium-xcuitest-driver/issues/1720)) ([8177e4b](https://github.com/appium/appium-xcuitest-driver/commit/8177e4b06b36261eac551e1174f13859d66cf2c3))
|
|
1843
|
+
|
|
1844
|
+
## [4.30.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.1...v4.30.2) (2023-05-31)
|
|
1845
|
+
|
|
1846
|
+
|
|
1847
|
+
### Bug Fixes
|
|
1848
|
+
|
|
1849
|
+
* **deps:** update dependency @xmldom/xmldom to v0.8.8 ([ae453ca](https://github.com/appium/appium-xcuitest-driver/commit/ae453cad884d4956c08f27781bf9c0eee9cd97c0))
|
|
1850
|
+
|
|
1851
|
+
## [4.30.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.30.0...v4.30.1) (2023-05-26)
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
### Bug Fixes
|
|
1855
|
+
|
|
1856
|
+
* tune usePreinstalledWDA to behave as similar to webDriverAgentUrl ([#1709](https://github.com/appium/appium-xcuitest-driver/issues/1709)) ([cb84925](https://github.com/appium/appium-xcuitest-driver/commit/cb8492538867374f9da5afc50f854d4624c1347a))
|
|
1857
|
+
|
|
1858
|
+
## [4.30.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.29.6...v4.30.0) (2023-05-26)
|
|
1859
|
+
|
|
1860
|
+
|
|
1861
|
+
### Features
|
|
1862
|
+
|
|
1863
|
+
* otherApps for real devices ([#1700](https://github.com/appium/appium-xcuitest-driver/issues/1700)) ([ad2db26](https://github.com/appium/appium-xcuitest-driver/commit/ad2db267dbbefa4dadede302930360f375c0bd88))
|
|
1864
|
+
|
|
1865
|
+
## [4.29.6](https://github.com/appium/appium-xcuitest-driver/compare/v4.29.5...v4.29.6) (2023-05-25)
|
|
1866
|
+
|
|
1867
|
+
|
|
1868
|
+
### Bug Fixes
|
|
1869
|
+
|
|
1870
|
+
* **deps:** update dependency appium-remote-debugger to v9.1.15 ([f8d8213](https://github.com/appium/appium-xcuitest-driver/commit/f8d82132106442df25a513f2b1d133ce58e22e67))
|
|
1871
|
+
|
|
1872
|
+
## [4.29.5](https://github.com/appium/appium-xcuitest-driver/compare/v4.29.4...v4.29.5) (2023-05-24)
|
|
1873
|
+
|
|
1874
|
+
|
|
1875
|
+
### Bug Fixes
|
|
1876
|
+
|
|
1877
|
+
* **deps:** update dependency appium-ios-simulator to v5.0.8 ([#1695](https://github.com/appium/appium-xcuitest-driver/issues/1695)) ([ed448e6](https://github.com/appium/appium-xcuitest-driver/commit/ed448e60813e6d295bbe01d801eebf2ed8291fc1))
|
|
1878
|
+
* **deps:** update dependency appium-xcode to v5.1.1 ([#1697](https://github.com/appium/appium-xcuitest-driver/issues/1697)) ([db78d3f](https://github.com/appium/appium-xcuitest-driver/commit/db78d3f8ffc2be45db303087d444355a0cbfb7e0))
|
|
1879
|
+
|
|
1880
|
+
## [4.29.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.29.3...v4.29.4) (2023-05-23)
|
|
1881
|
+
|
|
1882
|
+
|
|
1883
|
+
### Bug Fixes
|
|
1884
|
+
|
|
1885
|
+
* **deps:** update dependency appium-idb to v1.6.11 ([#1691](https://github.com/appium/appium-xcuitest-driver/issues/1691)) ([3c5b125](https://github.com/appium/appium-xcuitest-driver/commit/3c5b125504f822f1fe7af2b06c90a98230216f0e))
|
|
1886
|
+
|
|
1887
|
+
## [4.29.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.29.2...v4.29.3) (2023-05-22)
|
|
1888
|
+
|
|
1889
|
+
|
|
1890
|
+
### Bug Fixes
|
|
1891
|
+
|
|
1892
|
+
* **deps:** update dependency appium-ios-device to v2.5.2 ([#1692](https://github.com/appium/appium-xcuitest-driver/issues/1692)) ([80cb9b1](https://github.com/appium/appium-xcuitest-driver/commit/80cb9b14f79db67a9ff32c3319f622ddcd3b2f05))
|
|
1893
|
+
|
|
1894
|
+
## [4.29.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.29.1...v4.29.2) (2023-05-16)
|
|
1895
|
+
|
|
1896
|
+
|
|
1897
|
+
### Bug Fixes
|
|
1898
|
+
|
|
1899
|
+
* **deps:** update dependency appium-webdriveragent to v5.1.4 ([#1682](https://github.com/appium/appium-xcuitest-driver/issues/1682)) ([28026cf](https://github.com/appium/appium-xcuitest-driver/commit/28026cf6ec29e64c79c0efc75f5f0be603e70693))
|
|
1900
|
+
|
|
1901
|
+
## [4.29.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.29.0...v4.29.1) (2023-05-16)
|
|
1902
|
+
|
|
1903
|
+
|
|
1904
|
+
### Bug Fixes
|
|
1905
|
+
|
|
1906
|
+
* Make terminateApp to return a boolean ([2481656](https://github.com/appium/appium-xcuitest-driver/commit/24816564af418843ed9f23f59c6128be86cee4a7))
|
|
1907
|
+
|
|
1908
|
+
## [4.29.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.28.0...v4.29.0) (2023-05-15)
|
|
1909
|
+
|
|
1910
|
+
|
|
1911
|
+
### Features
|
|
1912
|
+
|
|
1913
|
+
* update docs and args for more execute methods ([5c4bd32](https://github.com/appium/appium-xcuitest-driver/commit/5c4bd3272701f191d5f1abd104deab31ed6b3595))
|
|
1914
|
+
|
|
1915
|
+
|
|
1916
|
+
### Bug Fixes
|
|
1917
|
+
|
|
1918
|
+
* **deps:** appium upgrades ([70c13dc](https://github.com/appium/appium-xcuitest-driver/commit/70c13dc779c2423c3d726aa1dbf7fcedd496ca82))
|
|
1919
|
+
* **execute-methods:** begin migration of docstrings to sources ([316c012](https://github.com/appium/appium-xcuitest-driver/commit/316c012fad7d9b3306cbbe767195b351f60aa26d))
|
|
1920
|
+
|
|
1921
|
+
## [4.28.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.27.2...v4.28.0) (2023-05-14)
|
|
1922
|
+
|
|
1923
|
+
|
|
1924
|
+
### Features
|
|
1925
|
+
|
|
1926
|
+
* Bump WDA ([#1680](https://github.com/appium/appium-xcuitest-driver/issues/1680)) ([2c07021](https://github.com/appium/appium-xcuitest-driver/commit/2c07021753b6c9b3c62639c79bcd769b17329c5c))
|
|
1927
|
+
|
|
1928
|
+
## [4.27.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.27.1...v4.27.2) (2023-05-13)
|
|
1929
|
+
|
|
1930
|
+
|
|
1931
|
+
### Bug Fixes
|
|
1932
|
+
|
|
1933
|
+
* **deps:** update dependency semver to v7.5.1 ([27a0a0e](https://github.com/appium/appium-xcuitest-driver/commit/27a0a0e2eb86e272eddf6c385a950a3e44b95d02))
|
|
1934
|
+
|
|
1935
|
+
## [4.27.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.27.0...v4.27.1) (2023-05-12)
|
|
1936
|
+
|
|
1937
|
+
|
|
1938
|
+
### Bug Fixes
|
|
1939
|
+
|
|
1940
|
+
* Update package lock ([4836490](https://github.com/appium/appium-xcuitest-driver/commit/4836490a84a05a127040bf882c37f87fc75118ca))
|
|
1941
|
+
|
|
1942
|
+
## [4.27.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.26.0...v4.27.0) (2023-05-11)
|
|
1943
|
+
|
|
1944
|
+
|
|
1945
|
+
### Features
|
|
1946
|
+
|
|
1947
|
+
* install prebuilt WDA as prebuiltWDAPath capability ([#1672](https://github.com/appium/appium-xcuitest-driver/issues/1672)) ([2226123](https://github.com/appium/appium-xcuitest-driver/commit/22261233114788663750713c1cbea65d25d2b525))
|
|
1948
|
+
|
|
1949
|
+
## [4.26.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.25.4...v4.26.0) (2023-05-06)
|
|
1950
|
+
|
|
1951
|
+
|
|
1952
|
+
### Features
|
|
1953
|
+
|
|
1954
|
+
* launch preinstalled WDA process without xcodebuild for a real device with usePreinstalledWDA ([#1609](https://github.com/appium/appium-xcuitest-driver/issues/1609)) ([3c72b58](https://github.com/appium/appium-xcuitest-driver/commit/3c72b58e12eea6d331b3b4e86cd3546954f5111f))
|
|
1955
|
+
|
|
1956
|
+
## [4.25.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.25.3...v4.25.4) (2023-05-06)
|
|
1957
|
+
|
|
1958
|
+
|
|
1959
|
+
### Bug Fixes
|
|
1960
|
+
|
|
1961
|
+
* **deps:** update dependency appium-webdriveragent to v4.15.1 ([#1667](https://github.com/appium/appium-xcuitest-driver/issues/1667)) ([008d7ef](https://github.com/appium/appium-xcuitest-driver/commit/008d7efda992be1b5dcc42391cf6b3c07b6f68ae))
|
|
1962
|
+
|
|
1963
|
+
## [4.25.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.25.2...v4.25.3) (2023-05-04)
|
|
1964
|
+
|
|
1965
|
+
|
|
1966
|
+
### Bug Fixes
|
|
1967
|
+
|
|
1968
|
+
* **deps:** update dependency node-simctl to v7.1.15 ([41ce19a](https://github.com/appium/appium-xcuitest-driver/commit/41ce19aca7c80c14285da6d4e6a053488fe295bf))
|
|
1969
|
+
|
|
1970
|
+
## [4.25.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.25.1...v4.25.2) (2023-05-02)
|
|
1971
|
+
|
|
1972
|
+
|
|
1973
|
+
### Bug Fixes
|
|
1974
|
+
|
|
1975
|
+
* **deps:** update dependency appium-webdriveragent to v4.14.0 ([bbca5a7](https://github.com/appium/appium-xcuitest-driver/commit/bbca5a731f353263bf1c2450ab6ce9319b9284f8))
|
|
1976
|
+
|
|
1977
|
+
|
|
1978
|
+
### Code Refactoring
|
|
1979
|
+
|
|
1980
|
+
* Replace pngjs with sharp ([#1653](https://github.com/appium/appium-xcuitest-driver/issues/1653)) ([73c2654](https://github.com/appium/appium-xcuitest-driver/commit/73c26546a0735f6a8da6da763efbed02d5490488))
|
|
1981
|
+
|
|
1982
|
+
## [4.25.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.25.0...v4.25.1) (2023-04-29)
|
|
1983
|
+
|
|
1984
|
+
|
|
1985
|
+
### Bug Fixes
|
|
1986
|
+
|
|
1987
|
+
* **deps:** update dependency appium-webdriveragent to v4.13.2 ([531c8f4](https://github.com/appium/appium-xcuitest-driver/commit/531c8f43c9522372a86db23b20d29e5476020f3e))
|
|
1988
|
+
|
|
1989
|
+
## [4.25.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.24.3...v4.25.0) (2023-04-26)
|
|
1990
|
+
|
|
1991
|
+
|
|
1992
|
+
### Features
|
|
1993
|
+
|
|
1994
|
+
* Add mobile wrapper for backgroundApp ([#1637](https://github.com/appium/appium-xcuitest-driver/issues/1637)) ([04397cf](https://github.com/appium/appium-xcuitest-driver/commit/04397cf5df6f40a9f32f3c5dab7f278f3fc1d9f0))
|
|
1995
|
+
|
|
1996
|
+
## [4.24.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.24.2...v4.24.3) (2023-04-22)
|
|
1997
|
+
|
|
1998
|
+
|
|
1999
|
+
### Bug Fixes
|
|
2000
|
+
|
|
2001
|
+
* **deps:** update dependency semver to v7.5.0 ([c5e21dc](https://github.com/appium/appium-xcuitest-driver/commit/c5e21dc7e18d734a8c7b9bc48cbe2bb5f00dbf64))
|
|
2002
|
+
|
|
2003
|
+
## [4.24.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.24.1...v4.24.2) (2023-04-21)
|
|
2004
|
+
|
|
2005
|
+
|
|
2006
|
+
### Bug Fixes
|
|
2007
|
+
|
|
2008
|
+
* make whitespace in execute methods insignificant ([#1628](https://github.com/appium/appium-xcuitest-driver/issues/1628)) ([1dc7777](https://github.com/appium/appium-xcuitest-driver/commit/1dc7777cc6c3cd23f75085967d193562b63e6562))
|
|
2009
|
+
|
|
2010
|
+
## [4.24.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.24.0...v4.24.1) (2023-04-20)
|
|
2011
|
+
|
|
2012
|
+
|
|
2013
|
+
### Bug Fixes
|
|
2014
|
+
|
|
2015
|
+
* Add missing return to removeApp API ([#1623](https://github.com/appium/appium-xcuitest-driver/issues/1623)) ([af2db2e](https://github.com/appium/appium-xcuitest-driver/commit/af2db2e8a7694887f9f16da34d4d66c4f96ec8a5))
|
|
2016
|
+
|
|
2017
|
+
## [4.24.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.23.2...v4.24.0) (2023-04-19)
|
|
2018
|
+
|
|
2019
|
+
|
|
2020
|
+
### Features
|
|
2021
|
+
|
|
2022
|
+
* Add mobile wrappers to lock/unlock the device ([#1624](https://github.com/appium/appium-xcuitest-driver/issues/1624)) ([eca9530](https://github.com/appium/appium-xcuitest-driver/commit/eca9530fb6f3aac049bf407a8433b71ed8664e76))
|
|
2023
|
+
|
|
2024
|
+
## [4.23.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.23.1...v4.23.2) (2023-04-19)
|
|
2025
|
+
|
|
2026
|
+
|
|
2027
|
+
### Bug Fixes
|
|
2028
|
+
|
|
2029
|
+
* apply correct params to enableConditionInducer ([09c97b2](https://github.com/appium/appium-xcuitest-driver/commit/09c97b237b381398a7505bd094fb329ee847ea9a))
|
|
2030
|
+
|
|
2031
|
+
## [4.23.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.23.0...v4.23.1) (2023-04-18)
|
|
2032
|
+
|
|
2033
|
+
|
|
2034
|
+
### Bug Fixes
|
|
2035
|
+
|
|
2036
|
+
* **command:** flip args for mobile: getPermission ([de44162](https://github.com/appium/appium-xcuitest-driver/commit/de44162820d28531faf631758916e9a704becf6b))
|
|
2037
|
+
|
|
2038
|
+
|
|
2039
|
+
### Code Refactoring
|
|
2040
|
+
|
|
2041
|
+
* getCookies and deleteCookies ([#1538](https://github.com/appium/appium-xcuitest-driver/issues/1538)) ([14e70b7](https://github.com/appium/appium-xcuitest-driver/commit/14e70b716775207804b4e40bd5b5c82dba6eacca))
|
|
2042
|
+
|
|
2043
|
+
## [4.23.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.22.0...v4.23.0) (2023-04-18)
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
### Features
|
|
2047
|
+
|
|
2048
|
+
* Add 'mobile: hideKeyboard' and 'mobile: isKeyboardShown' extensions ([#1618](https://github.com/appium/appium-xcuitest-driver/issues/1618)) ([0050e5f](https://github.com/appium/appium-xcuitest-driver/commit/0050e5f66abc0558e0294ecc0267a279af6f5b8d))
|
|
2049
|
+
|
|
2050
|
+
## [4.22.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.35...v4.22.0) (2023-04-17)
|
|
2051
|
+
|
|
2052
|
+
|
|
2053
|
+
### Features
|
|
2054
|
+
|
|
2055
|
+
* Add `mobile: getAppStrings` extension ([#1608](https://github.com/appium/appium-xcuitest-driver/issues/1608)) ([5445ebb](https://github.com/appium/appium-xcuitest-driver/commit/5445ebbab95da3874eb6f27e974c8a8a6828f914))
|
|
2056
|
+
|
|
2057
|
+
## [4.21.35](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.34...v4.21.35) (2023-04-16)
|
|
2058
|
+
|
|
2059
|
+
|
|
2060
|
+
### Bug Fixes
|
|
2061
|
+
|
|
2062
|
+
* **deps:** update dependency appium-ios-device to v2.5.0 ([b208ce3](https://github.com/appium/appium-xcuitest-driver/commit/b208ce3d8ca26c13247c7a2a090ebf596615b296))
|
|
2063
|
+
|
|
2064
|
+
## [4.21.34](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.33...v4.21.34) (2023-04-16)
|
|
2065
|
+
|
|
2066
|
+
|
|
2067
|
+
### Bug Fixes
|
|
2068
|
+
|
|
2069
|
+
* **deps:** update dependency semver to v7.4.0 ([cdecf15](https://github.com/appium/appium-xcuitest-driver/commit/cdecf150a8a33f5c741936d3bc042b52a9405b70))
|
|
2070
|
+
|
|
2071
|
+
## [4.21.33](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.32...v4.21.33) (2023-04-14)
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
### Bug Fixes
|
|
2075
|
+
|
|
2076
|
+
* Fix the return type of mobile: removeCertificate extension ([10cfce1](https://github.com/appium/appium-xcuitest-driver/commit/10cfce1308a22e47e823bbbe6affc116a743817b))
|
|
2077
|
+
|
|
2078
|
+
## [4.21.32](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.31...v4.21.32) (2023-04-14)
|
|
2079
|
+
|
|
2080
|
+
|
|
2081
|
+
### Bug Fixes
|
|
2082
|
+
|
|
2083
|
+
* **commands:** fix "mobile: startPcap" execute method ([a761365](https://github.com/appium/appium-xcuitest-driver/commit/a761365a66506d9e15f6977ee41cf161f987cc04))
|
|
2084
|
+
* **commands:** fix startAudioRecording and stopAudioRecording execute methods ([990547a](https://github.com/appium/appium-xcuitest-driver/commit/990547a9b671243b298c6318af1327f2e15315fa))
|
|
2085
|
+
|
|
2086
|
+
## [4.21.31](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.30...v4.21.31) (2023-04-13)
|
|
2087
|
+
|
|
2088
|
+
|
|
2089
|
+
### Miscellaneous Chores
|
|
2090
|
+
|
|
2091
|
+
* **workflows:** update actions/checkout digest to 83b7061 ([5212653](https://github.com/appium/appium-xcuitest-driver/commit/5212653638ce2ccfb6cbb82fb1f8094551a56e09))
|
|
2092
|
+
|
|
2093
|
+
## [4.21.30](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.29...v4.21.30) (2023-04-13)
|
|
2094
|
+
|
|
2095
|
+
|
|
2096
|
+
### Miscellaneous Chores
|
|
2097
|
+
|
|
2098
|
+
* **deps:** update dependency @appium/tsconfig to v0.3.0 ([ef1d08b](https://github.com/appium/appium-xcuitest-driver/commit/ef1d08be2b05c55691ac91600ab233da12bef22c))
|
|
2099
|
+
|
|
2100
|
+
## [4.21.29](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.28...v4.21.29) (2023-04-12)
|
|
2101
|
+
|
|
2102
|
+
|
|
2103
|
+
### Miscellaneous Chores
|
|
2104
|
+
|
|
2105
|
+
* **deps:** update dependency webdriverio to v8.8.1 ([827ff21](https://github.com/appium/appium-xcuitest-driver/commit/827ff21f75f14c50121edc72b80e83022611be82))
|
|
2106
|
+
|
|
2107
|
+
## [4.21.28](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.27...v4.21.28) (2023-04-12)
|
|
2108
|
+
|
|
2109
|
+
|
|
2110
|
+
### Bug Fixes
|
|
2111
|
+
|
|
2112
|
+
* **deps:** update dependency appium-xcode to v5.1.0 ([6f05ef2](https://github.com/appium/appium-xcuitest-driver/commit/6f05ef259a917bcb3c7653af733d1f28ebf13bdc))
|
|
2113
|
+
|
|
2114
|
+
## [4.21.27](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.26...v4.21.27) (2023-04-11)
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
### Bug Fixes
|
|
2118
|
+
|
|
2119
|
+
* add correct types for context objects ([928ffcc](https://github.com/appium/appium-xcuitest-driver/commit/928ffccfaca376fe875a0be5a5cb6e2f6b1cff87))
|
|
2120
|
+
* lint, test fixes ([47a8174](https://github.com/appium/appium-xcuitest-driver/commit/47a81743a69de33922f58df2399736c2fbb9c2bb))
|
|
2121
|
+
* **types:** fix mostly test types ([f1ec6d5](https://github.com/appium/appium-xcuitest-driver/commit/f1ec6d5e0b66fd41e6e9b93e9e409d725207424a))
|
|
2122
|
+
* **web:** do not return `true` from deleteCookie() ([5dd66d5](https://github.com/appium/appium-xcuitest-driver/commit/5dd66d54e346dbf671e5c72a4bb84c4d03243eed))
|
|
2123
|
+
* **xctest:** mobileRunXCTest param "args" is optional ([438671f](https://github.com/appium/appium-xcuitest-driver/commit/438671ff1a3501fb6265308c83344dcd9d3545e7))
|
|
2124
|
+
|
|
2125
|
+
|
|
2126
|
+
### Miscellaneous Chores
|
|
2127
|
+
|
|
2128
|
+
* re-enable require-await rule ([1b8b533](https://github.com/appium/appium-xcuitest-driver/commit/1b8b533387e0acf9a4881871cd0be3411841a6f4))
|
|
2129
|
+
* use execute methods & types ([f6f77d2](https://github.com/appium/appium-xcuitest-driver/commit/f6f77d2bd518c5ce625dd833748817e53f37b854))
|
|
2130
|
+
|
|
2131
|
+
## [4.21.26](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.25...v4.21.26) (2023-04-11)
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
### Miscellaneous Chores
|
|
2135
|
+
|
|
2136
|
+
* **deps:** update appium-related packages ([70b85b2](https://github.com/appium/appium-xcuitest-driver/commit/70b85b24135a7aa585818f5bb4b795ea9322d93e))
|
|
2137
|
+
* **deps:** update dependency appium to v2.0.0-beta.62 ([ed37de3](https://github.com/appium/appium-xcuitest-driver/commit/ed37de3c74ed144656aa000ffbec783321f38c6a))
|
|
2138
|
+
|
|
2139
|
+
## [4.21.25](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.24...v4.21.25) (2023-04-11)
|
|
2140
|
+
|
|
2141
|
+
|
|
2142
|
+
### Bug Fixes
|
|
2143
|
+
|
|
2144
|
+
* **deps:** update dependency lru-cache to v7.18.3 ([d6a2c3c](https://github.com/appium/appium-xcuitest-driver/commit/d6a2c3ca04bdccf6cf3308543fdd0f5316848066))
|
|
2145
|
+
|
|
2146
|
+
|
|
2147
|
+
### Miscellaneous Chores
|
|
2148
|
+
|
|
2149
|
+
* **deps:** update dependency webdriverio to v8.7.0 ([dfc7b01](https://github.com/appium/appium-xcuitest-driver/commit/dfc7b01ad55384680d23172d3b741c0a80b63b29))
|
|
2150
|
+
|
|
2151
|
+
## [4.21.24](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.23...v4.21.24) (2023-04-10)
|
|
2152
|
+
|
|
2153
|
+
|
|
2154
|
+
### Miscellaneous Chores
|
|
2155
|
+
|
|
2156
|
+
* **deps:** update dependency glob to v9.3.5 ([4105b6d](https://github.com/appium/appium-xcuitest-driver/commit/4105b6dfb597cb9fec7e3ed43f007f2e42acfa0d))
|
|
2157
|
+
|
|
2158
|
+
## [4.21.23](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.22...v4.21.23) (2023-04-10)
|
|
2159
|
+
|
|
2160
|
+
|
|
2161
|
+
### Miscellaneous Chores
|
|
2162
|
+
|
|
2163
|
+
* **deps:** update dependency type-fest to v3.8.0 ([6327db2](https://github.com/appium/appium-xcuitest-driver/commit/6327db2bbb1550119896598427d85487086b7c0a))
|
|
2164
|
+
|
|
2165
|
+
## [4.21.22](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.21...v4.21.22) (2023-04-10)
|
|
2166
|
+
|
|
2167
|
+
|
|
2168
|
+
### Miscellaneous Chores
|
|
2169
|
+
|
|
2170
|
+
* **deps:** update dependency eslint to v8.38.0 ([39ebc7d](https://github.com/appium/appium-xcuitest-driver/commit/39ebc7d2fe939f36facb37ad87fa9bc194d146c3))
|
|
2171
|
+
|
|
2172
|
+
## [4.21.21](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.20...v4.21.21) (2023-04-09)
|
|
2173
|
+
|
|
2174
|
+
|
|
2175
|
+
### Bug Fixes
|
|
2176
|
+
|
|
2177
|
+
* **deps:** update dependency moment-timezone to v0.5.43 ([a9d57da](https://github.com/appium/appium-xcuitest-driver/commit/a9d57da88e8a45e9236ef35cc3e5f31e8016064b))
|
|
2178
|
+
|
|
2179
|
+
## [4.21.20](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.19...v4.21.20) (2023-04-09)
|
|
2180
|
+
|
|
2181
|
+
|
|
2182
|
+
### Bug Fixes
|
|
2183
|
+
|
|
2184
|
+
* **deps:** update dependency appium-ios-device to v2.4.12 ([ddd20d8](https://github.com/appium/appium-xcuitest-driver/commit/ddd20d8ce7995b851e7526baeb16b5a94ac262bb))
|
|
2185
|
+
|
|
2186
|
+
## [4.21.19](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.18...v4.21.19) (2023-04-09)
|
|
2187
|
+
|
|
2188
|
+
|
|
2189
|
+
### Bug Fixes
|
|
2190
|
+
|
|
2191
|
+
* **deps:** update dependency @xmldom/xmldom to v0.8.7 ([0c94161](https://github.com/appium/appium-xcuitest-driver/commit/0c94161368d177112d30e910e725c8cd30716742))
|
|
2192
|
+
|
|
2193
|
+
## [4.21.18](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.17...v4.21.18) (2023-04-09)
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
### Miscellaneous Chores
|
|
2197
|
+
|
|
2198
|
+
* **deps:** update eslint-related packages ([9e60d30](https://github.com/appium/appium-xcuitest-driver/commit/9e60d30489edf9bf2eda0ea180c77edfec3d2ed3))
|
|
2199
|
+
|
|
2200
|
+
## [4.21.17](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.16...v4.21.17) (2023-04-08)
|
|
2201
|
+
|
|
2202
|
+
|
|
2203
|
+
### Miscellaneous Chores
|
|
2204
|
+
|
|
2205
|
+
* **deps:** update dependency semantic-release to v20.1.3 ([ef8056a](https://github.com/appium/appium-xcuitest-driver/commit/ef8056ada3da522c6b4f1e93b69e527a1fe4143d))
|
|
2206
|
+
|
|
2207
|
+
## [4.21.16](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.15...v4.21.16) (2023-04-08)
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
### Miscellaneous Chores
|
|
2211
|
+
|
|
2212
|
+
* **deps:** update dependency lint-staged to v13.2.1 ([d93296a](https://github.com/appium/appium-xcuitest-driver/commit/d93296a53d59eefe7397ab39893fe1f40b506b4b))
|
|
2213
|
+
|
|
2214
|
+
## [4.21.15](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.14...v4.21.15) (2023-04-08)
|
|
2215
|
+
|
|
2216
|
+
|
|
2217
|
+
### Miscellaneous Chores
|
|
2218
|
+
|
|
2219
|
+
* **deps:** update dependency pem to v1.14.7 ([30618c9](https://github.com/appium/appium-xcuitest-driver/commit/30618c9ef5f61e3fd75bac88c31c7862e251f86c))
|
|
2220
|
+
|
|
2221
|
+
## [4.21.14](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.13...v4.21.14) (2023-04-07)
|
|
2222
|
+
|
|
2223
|
+
|
|
2224
|
+
### Miscellaneous Chores
|
|
2225
|
+
|
|
2226
|
+
* **ci:** fix docs workflow ([102cd39](https://github.com/appium/appium-xcuitest-driver/commit/102cd39cf03bda25522e3e6a83104b71f8466a37))
|
|
2227
|
+
* **ci:** remove dependabot config ([7c81e33](https://github.com/appium/appium-xcuitest-driver/commit/7c81e33d6c44b4edffe6494fc504d0a68c536ed8))
|
|
2228
|
+
* update .gitattributes ([c71c043](https://github.com/appium/appium-xcuitest-driver/commit/c71c0432fbed74140102e0d97f5a321fae766acc))
|
|
2229
|
+
* **workflows:** pin dependencies ([9d82149](https://github.com/appium/appium-xcuitest-driver/commit/9d8214962b5bb5469bc0f0ebd971b4bd9fa59189))
|
|
2230
|
+
|
|
2231
|
+
## [4.21.13](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.12...v4.21.13) (2023-04-07)
|
|
2232
|
+
|
|
2233
|
+
|
|
2234
|
+
### Miscellaneous Chores
|
|
2235
|
+
|
|
2236
|
+
* **deps:** update dependency glob to v9.3.4 ([6da88cb](https://github.com/appium/appium-xcuitest-driver/commit/6da88cb519abe986f0bca09babdc3ca6f7645243))
|
|
2237
|
+
|
|
2238
|
+
## [4.21.12](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.11...v4.21.12) (2023-04-07)
|
|
2239
|
+
|
|
2240
|
+
|
|
2241
|
+
### Miscellaneous Chores
|
|
2242
|
+
|
|
2243
|
+
* **deps:** update appium-related packages ([108cd56](https://github.com/appium/appium-xcuitest-driver/commit/108cd569a502f868c550748bb5db91188fb17e65))
|
|
2244
|
+
|
|
2245
|
+
## [4.21.11](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.10...v4.21.11) (2023-04-06)
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
### Miscellaneous Chores
|
|
2249
|
+
|
|
2250
|
+
* **ci:** attempt to get docs preview working ([8b0f34f](https://github.com/appium/appium-xcuitest-driver/commit/8b0f34fb8d2ae810db22fea7741935cee0d69c29))
|
|
2251
|
+
|
|
2252
|
+
## [4.21.10](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.9...v4.21.10) (2023-04-06)
|
|
2253
|
+
|
|
2254
|
+
|
|
2255
|
+
### Miscellaneous Chores
|
|
2256
|
+
|
|
2257
|
+
* **deps:** update dependency axios to v1.3.5 ([38c1b04](https://github.com/appium/appium-xcuitest-driver/commit/38c1b0479426bb14f95022e1c43c98c4a9ed8629))
|
|
2258
|
+
|
|
2259
|
+
## [4.21.9](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.8...v4.21.9) (2023-04-06)
|
|
2260
|
+
|
|
2261
|
+
|
|
2262
|
+
### Miscellaneous Chores
|
|
2263
|
+
|
|
2264
|
+
* **deps:** update dependency appium to v2.0.0-beta.61 ([9eb21a0](https://github.com/appium/appium-xcuitest-driver/commit/9eb21a06d2d9add933392947060c0868cc580d8d))
|
|
2265
|
+
|
|
2266
|
+
## [4.21.8](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.7...v4.21.8) (2023-04-05)
|
|
2267
|
+
|
|
2268
|
+
|
|
2269
|
+
### Miscellaneous Chores
|
|
2270
|
+
|
|
2271
|
+
* add wallaby config ([0e42a45](https://github.com/appium/appium-xcuitest-driver/commit/0e42a45c623d33024f212d0437431e4cf77c48b7))
|
|
2272
|
+
* pin all deps ([f0a54e5](https://github.com/appium/appium-xcuitest-driver/commit/f0a54e5a3f1e151084d23ae2f1bf2f3ac00f0f99))
|
|
2273
|
+
* update GHA workflows to use "npm ci" ([b9083fc](https://github.com/appium/appium-xcuitest-driver/commit/b9083fc34dc3d45176ec67dc5c590b9dc6996046))
|
|
2274
|
+
* update lint-staged config ([bb1af17](https://github.com/appium/appium-xcuitest-driver/commit/bb1af1793d7aa8400c67ca708e636b6c619abcf0))
|
|
2275
|
+
* **utils:** lint ([039c3c0](https://github.com/appium/appium-xcuitest-driver/commit/039c3c083cdcb68d99b80585c2bb77836711fa0d))
|
|
2276
|
+
|
|
2277
|
+
## [4.21.7](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.6...v4.21.7) (2023-04-04)
|
|
2278
|
+
|
|
2279
|
+
|
|
2280
|
+
### Miscellaneous Chores
|
|
2281
|
+
|
|
2282
|
+
* Bump WDA ([4c1b22d](https://github.com/appium/appium-xcuitest-driver/commit/4c1b22db30b154eddef889f59aa13a339a091149))
|
|
2283
|
+
|
|
2284
|
+
## [4.21.6](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.5...v4.21.6) (2023-04-03)
|
|
2285
|
+
|
|
2286
|
+
|
|
2287
|
+
### Miscellaneous Chores
|
|
2288
|
+
|
|
2289
|
+
* **test:** clean up unit test ([794e09a](https://github.com/appium/appium-xcuitest-driver/commit/794e09ac6d25b486d1d2954ab2403192ee94c816))
|
|
2290
|
+
|
|
2291
|
+
## [4.21.5](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.4...v4.21.5) (2023-04-03)
|
|
2292
|
+
|
|
2293
|
+
|
|
2294
|
+
### Bug Fixes
|
|
2295
|
+
|
|
2296
|
+
* revert "chore: Bump get-port from 5.1.1 to 6.1.2 ([#1535](https://github.com/appium/appium-xcuitest-driver/issues/1535))" ([4d6303e](https://github.com/appium/appium-xcuitest-driver/commit/4d6303ef7f9173485d0a8d3bb8ede1f18b625331))
|
|
2297
|
+
|
|
2298
|
+
## [4.21.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.3...v4.21.4) (2023-04-01)
|
|
2299
|
+
|
|
2300
|
+
|
|
2301
|
+
### Miscellaneous Chores
|
|
2302
|
+
|
|
2303
|
+
* Bump get-port from 5.1.1 to 6.1.2 ([#1535](https://github.com/appium/appium-xcuitest-driver/issues/1535)) ([ff96d7c](https://github.com/appium/appium-xcuitest-driver/commit/ff96d7cfa209783f58fc053602b7e37889c6241f))
|
|
2304
|
+
* Bump rimraf from 3.0.2 to 4.4.1 ([#1536](https://github.com/appium/appium-xcuitest-driver/issues/1536)) ([8dd4515](https://github.com/appium/appium-xcuitest-driver/commit/8dd4515a3f10a090cd49881217fb98903339a786))
|
|
2305
|
+
|
|
2306
|
+
## [4.21.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.2...v4.21.3) (2023-04-01)
|
|
2307
|
+
|
|
2308
|
+
|
|
2309
|
+
### Bug Fixes
|
|
2310
|
+
|
|
2311
|
+
* cookies regression: send Page commands for cookies handling ([#1534](https://github.com/appium/appium-xcuitest-driver/issues/1534)) ([908ed1a](https://github.com/appium/appium-xcuitest-driver/commit/908ed1a6d64e4522d95502e125bde32032a3e686))
|
|
2312
|
+
|
|
2313
|
+
## [4.21.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.1...v4.21.2) (2023-03-31)
|
|
2314
|
+
|
|
2315
|
+
|
|
2316
|
+
### Bug Fixes
|
|
2317
|
+
|
|
2318
|
+
* launchApp regression ([#1540](https://github.com/appium/appium-xcuitest-driver/issues/1540)) ([a66cb47](https://github.com/appium/appium-xcuitest-driver/commit/a66cb47f83ea9dd1ec70f227281957cd932cd037))
|
|
2319
|
+
|
|
2320
|
+
## [4.21.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.21.0...v4.21.1) (2023-03-29)
|
|
2321
|
+
|
|
2322
|
+
|
|
2323
|
+
### Miscellaneous Chores
|
|
2324
|
+
|
|
2325
|
+
* **test:** fix a bunch of assertions ([a733d71](https://github.com/appium/appium-xcuitest-driver/commit/a733d7139050aca887766da81b5bba93f3f07f4c))
|
|
2326
|
+
|
|
2327
|
+
## [4.21.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.20.1...v4.21.0) (2023-03-29)
|
|
2328
|
+
|
|
2329
|
+
|
|
2330
|
+
### Features
|
|
2331
|
+
|
|
2332
|
+
* build docs with typedoc ([ab354a5](https://github.com/appium/appium-xcuitest-driver/commit/ab354a57d8677b639949959f8a7112cb11cd9848))
|
|
2333
|
+
* refactor to support automatic command docs ([9b9e6fa](https://github.com/appium/appium-xcuitest-driver/commit/9b9e6fa860425f3ed2a9130d088889c05e3e10a9))
|
|
2334
|
+
|
|
2335
|
+
|
|
2336
|
+
### Bug Fixes
|
|
2337
|
+
|
|
2338
|
+
* **driver:** use correct method name ([45330bb](https://github.com/appium/appium-xcuitest-driver/commit/45330bbbdc8b1d28a3dd43ba8628e80a9f278160))
|
|
2339
|
+
* **execute:** better validation of "mobile commands" ([0b9b9cb](https://github.com/appium/appium-xcuitest-driver/commit/0b9b9cb697d3c18e1d65a122ac5029ad6452c916))
|
|
2340
|
+
|
|
2341
|
+
|
|
2342
|
+
### Miscellaneous Chores
|
|
2343
|
+
|
|
2344
|
+
* add wallaby config ([1915292](https://github.com/appium/appium-xcuitest-driver/commit/1915292b830d8f60a98af1b211f83d3982bfba7b))
|
|
2345
|
+
* fixup ([4fb1e8a](https://github.com/appium/appium-xcuitest-driver/commit/4fb1e8a1d31f807c92550f0677bf4e36fefd9076))
|
|
2346
|
+
* rename method installXCTestBundle => mobileInstallXCTestBundle for consistency ([11349cb](https://github.com/appium/appium-xcuitest-driver/commit/11349cb52bea66ee4b2d7f48aa81d8891e69641d))
|
|
2347
|
+
* rename runXCTest => mobileRunXCTest ([621ef8c](https://github.com/appium/appium-xcuitest-driver/commit/621ef8c6020c67bbc95bb7a44bbdf8a32a1a61e2))
|
|
2348
|
+
* try to skip problem tests ([3cfea5d](https://github.com/appium/appium-xcuitest-driver/commit/3cfea5d72984035c6ee84a06b019c4151017e34f))
|
|
2349
|
+
* upgrade appium ([fb6ed96](https://github.com/appium/appium-xcuitest-driver/commit/fb6ed9664246e63b8a49c35f2ab8a3231627bfd9))
|
|
2350
|
+
* use random port for phony https server ([382d296](https://github.com/appium/appium-xcuitest-driver/commit/382d2966d5043fe93e3646f88e7b0416f6e4d6f3))
|
|
2351
|
+
|
|
2352
|
+
## [4.20.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.20.0...v4.20.1) (2023-03-29)
|
|
2353
|
+
|
|
2354
|
+
|
|
2355
|
+
### Bug Fixes
|
|
2356
|
+
|
|
2357
|
+
* Add missing --name option to removeProfile ([#1530](https://github.com/appium/appium-xcuitest-driver/issues/1530)) ([a930762](https://github.com/appium/appium-xcuitest-driver/commit/a930762933a7008caab4fe1549e64e4d340b6ede))
|
|
2358
|
+
|
|
2359
|
+
## [4.20.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.19.1...v4.20.0) (2023-03-28)
|
|
2360
|
+
|
|
2361
|
+
|
|
2362
|
+
### Features
|
|
2363
|
+
|
|
2364
|
+
* Add command for mobileRemoveCertificate for real devices ([#1529](https://github.com/appium/appium-xcuitest-driver/issues/1529)) ([2255f31](https://github.com/appium/appium-xcuitest-driver/commit/2255f3129d952c804dde3c1328aaacceb1e7df79))
|
|
2365
|
+
|
|
2366
|
+
## [4.19.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.19.0...v4.19.1) (2023-03-12)
|
|
2367
|
+
|
|
2368
|
+
|
|
2369
|
+
### Bug Fixes
|
|
2370
|
+
|
|
2371
|
+
* Make sure the app is not reinstalled if noReset is requested ([4e8ccba](https://github.com/appium/appium-xcuitest-driver/commit/4e8ccba99d5e7b491ecdca0d5e17188e76165223))
|
|
2372
|
+
* Tune app install condition ([d64805b](https://github.com/appium/appium-xcuitest-driver/commit/d64805b80fb1f1ab4a13fa1ebcdbb8915548d883))
|
|
2373
|
+
|
|
2374
|
+
## [4.19.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.18.4...v4.19.0) (2023-03-03)
|
|
2375
|
+
|
|
2376
|
+
|
|
2377
|
+
### Features
|
|
2378
|
+
|
|
2379
|
+
* Allow to skip app install if a newer/same app version is already installed ([#1514](https://github.com/appium/appium-xcuitest-driver/issues/1514)) ([a79cc4e](https://github.com/appium/appium-xcuitest-driver/commit/a79cc4e9f6e1c4e83cc2224a70381427ecc48329))
|
|
2380
|
+
|
|
2381
|
+
|
|
2382
|
+
### Code Refactoring
|
|
2383
|
+
|
|
2384
|
+
* cleanup process.env.CLOUD and process.env.REAL_DEVICE ([#1513](https://github.com/appium/appium-xcuitest-driver/issues/1513)) ([579b1ee](https://github.com/appium/appium-xcuitest-driver/commit/579b1ee62288876d569cb6ae2c222a2658eb4c59))
|
|
2385
|
+
|
|
2386
|
+
## [4.18.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.18.3...v4.18.4) (2023-02-28)
|
|
2387
|
+
|
|
2388
|
+
|
|
2389
|
+
### Miscellaneous Chores
|
|
2390
|
+
|
|
2391
|
+
* Short circuit if the app under test crashes while checking for alerts ([#1510](https://github.com/appium/appium-xcuitest-driver/issues/1510)) ([5684cdf](https://github.com/appium/appium-xcuitest-driver/commit/5684cdf8c55a2d6a59d51e56c94bf0cec01f79a4))
|
|
2392
|
+
|
|
2393
|
+
## [4.18.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.18.2...v4.18.3) (2023-02-27)
|
|
2394
|
+
|
|
2395
|
+
|
|
2396
|
+
### Miscellaneous Chores
|
|
2397
|
+
|
|
2398
|
+
* Bump @appium/docutils from 0.1.6 to 0.2.2 ([#1509](https://github.com/appium/appium-xcuitest-driver/issues/1509)) ([5e7c927](https://github.com/appium/appium-xcuitest-driver/commit/5e7c927353e38b096d0e7e82f52163e0e022e6bd))
|
|
2399
|
+
|
|
2400
|
+
## [4.18.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.18.1...v4.18.2) (2023-02-26)
|
|
2401
|
+
|
|
2402
|
+
|
|
2403
|
+
### Miscellaneous Chores
|
|
2404
|
+
|
|
2405
|
+
* remove unused cookies code ([#1508](https://github.com/appium/appium-xcuitest-driver/issues/1508)) ([1f5e2c4](https://github.com/appium/appium-xcuitest-driver/commit/1f5e2c4ef17b2698a4f8a156fcccac7f3406b659))
|
|
2406
|
+
|
|
2407
|
+
## [4.18.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.18.0...v4.18.1) (2023-02-23)
|
|
2408
|
+
|
|
2409
|
+
|
|
2410
|
+
### Bug Fixes
|
|
2411
|
+
|
|
2412
|
+
* Update WDA build scipt ([#1506](https://github.com/appium/appium-xcuitest-driver/issues/1506)) ([ad84172](https://github.com/appium/appium-xcuitest-driver/commit/ad841721549513ebcb1accc7840667d6898e023f))
|
|
2413
|
+
|
|
2414
|
+
## [4.18.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.17.1...v4.18.0) (2023-02-20)
|
|
2415
|
+
|
|
2416
|
+
|
|
2417
|
+
### Features
|
|
2418
|
+
|
|
2419
|
+
* Add simulated geolocation extensions ([#1503](https://github.com/appium/appium-xcuitest-driver/issues/1503)) ([cfb149b](https://github.com/appium/appium-xcuitest-driver/commit/cfb149be26b6dfc55771e6b5159b14c127f88268))
|
|
2420
|
+
|
|
2421
|
+
## [4.17.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.17.0...v4.17.1) (2023-02-20)
|
|
2422
|
+
|
|
2423
|
+
|
|
2424
|
+
### Miscellaneous Chores
|
|
2425
|
+
|
|
2426
|
+
* Bump pngjs from 6.0.0 to 7.0.0 ([#1504](https://github.com/appium/appium-xcuitest-driver/issues/1504)) ([e0bdc0b](https://github.com/appium/appium-xcuitest-driver/commit/e0bdc0b0ae18f6681ce9ca7f5328ec318061c724))
|
|
2427
|
+
|
|
2428
|
+
## [4.17.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.13...v4.17.0) (2023-02-20)
|
|
2429
|
+
|
|
2430
|
+
|
|
2431
|
+
### Features
|
|
2432
|
+
|
|
2433
|
+
* Add deepLink extension ([#1502](https://github.com/appium/appium-xcuitest-driver/issues/1502)) ([067179b](https://github.com/appium/appium-xcuitest-driver/commit/067179beda19ca478d2d08b59ffb864ba6c9bbdb))
|
|
2434
|
+
|
|
2435
|
+
## [4.16.13](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.12...v4.16.13) (2023-02-17)
|
|
2436
|
+
|
|
2437
|
+
|
|
2438
|
+
### Miscellaneous Chores
|
|
2439
|
+
|
|
2440
|
+
* Bump WDA ([d8994f9](https://github.com/appium/appium-xcuitest-driver/commit/d8994f9e807e893544ce0fcd42e63147fa1a1c5b))
|
|
2441
|
+
|
|
2442
|
+
## [4.16.12](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.11...v4.16.12) (2023-02-06)
|
|
2443
|
+
|
|
2444
|
+
|
|
2445
|
+
### Bug Fixes
|
|
2446
|
+
|
|
2447
|
+
* Update NOTCHED_DEVICE_SIZES for nativeWebTapStrict (part of [#1490](https://github.com/appium/appium-xcuitest-driver/issues/1490)) ([#1497](https://github.com/appium/appium-xcuitest-driver/issues/1497)) ([e2bbd94](https://github.com/appium/appium-xcuitest-driver/commit/e2bbd94e27d402776de235ff53abd714b7ae6ef0))
|
|
2448
|
+
|
|
2449
|
+
## [4.16.11](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.10...v4.16.11) (2023-02-05)
|
|
2450
|
+
|
|
2451
|
+
|
|
2452
|
+
### Bug Fixes
|
|
2453
|
+
|
|
2454
|
+
* update WDA to include snapshots/maxDepth fixes ([#1495](https://github.com/appium/appium-xcuitest-driver/issues/1495)) ([ccc30f8](https://github.com/appium/appium-xcuitest-driver/commit/ccc30f81329e149a6dc60c1c4b824052cdfb998d))
|
|
2455
|
+
|
|
2456
|
+
## [4.16.10](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.9...v4.16.10) (2023-01-17)
|
|
2457
|
+
|
|
2458
|
+
|
|
2459
|
+
### Miscellaneous Chores
|
|
2460
|
+
|
|
2461
|
+
* Bump semantic-release from 19.0.5 to 20.0.2 ([#1485](https://github.com/appium/appium-xcuitest-driver/issues/1485)) ([bbe7366](https://github.com/appium/appium-xcuitest-driver/commit/bbe73661336671b2c189fd3a1af6ecf5873001e3))
|
|
2462
|
+
|
|
2463
|
+
## [4.16.9](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.8...v4.16.9) (2023-01-13)
|
|
2464
|
+
|
|
2465
|
+
|
|
2466
|
+
### Miscellaneous Chores
|
|
2467
|
+
|
|
2468
|
+
* Bump appium-xcode from 4.0.5 to 5.0.0 ([#1488](https://github.com/appium/appium-xcuitest-driver/issues/1488)) ([e759033](https://github.com/appium/appium-xcuitest-driver/commit/e759033fdac8b05f4410fd77028c0f85cf22918d))
|
|
2469
|
+
|
|
2470
|
+
## [4.16.8](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.7...v4.16.8) (2023-01-12)
|
|
2471
|
+
|
|
2472
|
+
|
|
2473
|
+
### Bug Fixes
|
|
2474
|
+
|
|
2475
|
+
* specify supported non-standard commands in newMethodMap ([503bd60](https://github.com/appium/appium-xcuitest-driver/commit/503bd60398155bf7e1d95346dad6258d120f0fb2))
|
|
2476
|
+
|
|
2477
|
+
## [4.16.7](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.6...v4.16.7) (2023-01-10)
|
|
2478
|
+
|
|
2479
|
+
|
|
2480
|
+
### Bug Fixes
|
|
2481
|
+
|
|
2482
|
+
* mobile:getPermission for iOS 14+ ([#1486](https://github.com/appium/appium-xcuitest-driver/issues/1486)) ([803390c](https://github.com/appium/appium-xcuitest-driver/commit/803390cb3e5f0d3fc24d5278dd8c9af89e3f70e5))
|
|
2483
|
+
|
|
2484
|
+
## [4.16.6](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.5...v4.16.6) (2023-01-03)
|
|
2485
|
+
|
|
2486
|
+
|
|
2487
|
+
### Bug Fixes
|
|
2488
|
+
|
|
2489
|
+
* Include scripts into the package ([f747865](https://github.com/appium/appium-xcuitest-driver/commit/f747865ca970c5480fb3602f8f3a35ecb2fa1a25))
|
|
2490
|
+
|
|
2491
|
+
## [4.16.5](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.4...v4.16.5) (2022-12-28)
|
|
2492
|
+
|
|
2493
|
+
|
|
2494
|
+
### Miscellaneous Chores
|
|
2495
|
+
|
|
2496
|
+
* remove tapWithShortPressDuration cap ([#1481](https://github.com/appium/appium-xcuitest-driver/issues/1481)) ([5d64e3a](https://github.com/appium/appium-xcuitest-driver/commit/5d64e3aa32ef4eaaaadaeb1c799670622680b579))
|
|
2497
|
+
|
|
2498
|
+
## [4.16.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.3...v4.16.4) (2022-12-28)
|
|
2499
|
+
|
|
2500
|
+
|
|
2501
|
+
### Bug Fixes
|
|
2502
|
+
|
|
2503
|
+
* releaseActions fails due to unhandled endpoint ([#1477](https://github.com/appium/appium-xcuitest-driver/issues/1477)) ([ff53b98](https://github.com/appium/appium-xcuitest-driver/commit/ff53b9890a04c4501762325d195815f52ce8a916))
|
|
2504
|
+
|
|
2505
|
+
## [4.16.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.2...v4.16.3) (2022-12-19)
|
|
2506
|
+
|
|
2507
|
+
|
|
2508
|
+
### Bug Fixes
|
|
2509
|
+
|
|
2510
|
+
* set permissions for simulator ([#1473](https://github.com/appium/appium-xcuitest-driver/issues/1473)) ([a885628](https://github.com/appium/appium-xcuitest-driver/commit/a8856286ea7304a9c2ec3ed8c46a5c66526bc102))
|
|
2511
|
+
|
|
2512
|
+
## [4.16.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.1...v4.16.2) (2022-12-18)
|
|
2513
|
+
|
|
2514
|
+
|
|
2515
|
+
### Bug Fixes
|
|
2516
|
+
|
|
2517
|
+
* XCTest command ([#1471](https://github.com/appium/appium-xcuitest-driver/issues/1471)) ([d176f45](https://github.com/appium/appium-xcuitest-driver/commit/d176f455c23b4c6b59ff72be36d3050c60bcf470))
|
|
2518
|
+
|
|
2519
|
+
## [4.16.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.16.0...v4.16.1) (2022-12-17)
|
|
2520
|
+
|
|
2521
|
+
|
|
2522
|
+
### Bug Fixes
|
|
2523
|
+
|
|
2524
|
+
* /wda/device/appearance as withoutSession ([#1472](https://github.com/appium/appium-xcuitest-driver/issues/1472)) ([00eba1d](https://github.com/appium/appium-xcuitest-driver/commit/00eba1d9eb42c998ffe93d978cb9fb4c5f761b35))
|
|
2525
|
+
|
|
2526
|
+
## [4.16.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.15.2...v4.16.0) (2022-12-16)
|
|
2527
|
+
|
|
2528
|
+
|
|
2529
|
+
### Features
|
|
2530
|
+
|
|
2531
|
+
* Bump the major version of appium-ios-simulator ([#1468](https://github.com/appium/appium-xcuitest-driver/issues/1468)) ([c9fc1dc](https://github.com/appium/appium-xcuitest-driver/commit/c9fc1dc7d70a2050435a651d77bc6e37253965cd))
|
|
2532
|
+
|
|
2533
|
+
## [4.15.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.15.1...v4.15.2) (2022-12-14)
|
|
2534
|
+
|
|
2535
|
+
|
|
2536
|
+
### Miscellaneous Chores
|
|
2537
|
+
|
|
2538
|
+
* Bump @appium/test-support from 2.0.2 to 3.0.0 ([#1467](https://github.com/appium/appium-xcuitest-driver/issues/1467)) ([3149a15](https://github.com/appium/appium-xcuitest-driver/commit/3149a15240b4529085cbee8e015b8cedbf054179))
|
|
2539
|
+
|
|
2540
|
+
## [4.15.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.15.0...v4.15.1) (2022-12-13)
|
|
2541
|
+
|
|
2542
|
+
|
|
2543
|
+
### Miscellaneous Chores
|
|
2544
|
+
|
|
2545
|
+
* Deprecate calendarAccessAuthorized capability ([#1465](https://github.com/appium/appium-xcuitest-driver/issues/1465)) ([2c63d9a](https://github.com/appium/appium-xcuitest-driver/commit/2c63d9a97ae4c420942e66f2a3bc1413535c7905))
|
|
2546
|
+
|
|
2547
|
+
## [4.15.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.14.0...v4.15.0) (2022-12-13)
|
|
2548
|
+
|
|
2549
|
+
|
|
2550
|
+
### Features
|
|
2551
|
+
|
|
2552
|
+
* add reduceTransparency ([#1464](https://github.com/appium/appium-xcuitest-driver/issues/1464)) ([82e7c23](https://github.com/appium/appium-xcuitest-driver/commit/82e7c237dcf8dcd5ee23c2bd57c2f831f4083a03))
|
|
2553
|
+
|
|
2554
|
+
## [4.14.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.13.4...v4.14.0) (2022-12-13)
|
|
2555
|
+
|
|
2556
|
+
|
|
2557
|
+
### Features
|
|
2558
|
+
|
|
2559
|
+
* Streamline changing of Simulator preferences ([#1463](https://github.com/appium/appium-xcuitest-driver/issues/1463)) ([79c2e36](https://github.com/appium/appium-xcuitest-driver/commit/79c2e3626d550a2d04ace00d840d7b8e4d14614b))
|
|
2560
|
+
|
|
2561
|
+
## [4.13.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.13.3...v4.13.4) (2022-12-10)
|
|
2562
|
+
|
|
2563
|
+
|
|
2564
|
+
### Miscellaneous Chores
|
|
2565
|
+
|
|
2566
|
+
* Only call appropriate setters if their capabilities are defined ([#1462](https://github.com/appium/appium-xcuitest-driver/issues/1462)) ([f633a51](https://github.com/appium/appium-xcuitest-driver/commit/f633a51981aab8d03c3a3cb173bea90b6f9178a1))
|
|
2567
|
+
|
|
2568
|
+
## [4.13.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.13.2...v4.13.3) (2022-12-08)
|
|
2569
|
+
|
|
2570
|
+
|
|
2571
|
+
### Miscellaneous Chores
|
|
2572
|
+
|
|
2573
|
+
* Bump WDA ([b6f1658](https://github.com/appium/appium-xcuitest-driver/commit/b6f1658fa1920b3e52005be0f63f1e66c0723c1b))
|
|
2574
|
+
|
|
2575
|
+
## [4.13.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.13.1...v4.13.2) (2022-12-05)
|
|
2576
|
+
|
|
2577
|
+
|
|
2578
|
+
### Miscellaneous Chores
|
|
2579
|
+
|
|
2580
|
+
* Bump webdriverio from 7.27.0 to 8.0.5 ([#1460](https://github.com/appium/appium-xcuitest-driver/issues/1460)) ([7f1c079](https://github.com/appium/appium-xcuitest-driver/commit/7f1c0793b83b6c41a71c848472e93de04eb1cb04))
|
|
2581
|
+
|
|
2582
|
+
## [4.13.1](https://github.com/appium/appium-xcuitest-driver/compare/v4.13.0...v4.13.1) (2022-12-01)
|
|
2583
|
+
|
|
2584
|
+
|
|
2585
|
+
### Miscellaneous Chores
|
|
2586
|
+
|
|
2587
|
+
* update releaserc ([#1458](https://github.com/appium/appium-xcuitest-driver/issues/1458)) ([c818934](https://github.com/appium/appium-xcuitest-driver/commit/c81893450bdf48be8cb9406e06a3a99b6f826ba3))
|
|
2588
|
+
|
|
2589
|
+
# [4.13.0](https://github.com/appium/appium-xcuitest-driver/compare/v4.12.4...v4.13.0) (2022-12-01)
|
|
2590
|
+
|
|
2591
|
+
|
|
2592
|
+
### Features
|
|
2593
|
+
|
|
2594
|
+
* Add a script to open WDA in Xcode ([#1457](https://github.com/appium/appium-xcuitest-driver/issues/1457)) ([e2255fe](https://github.com/appium/appium-xcuitest-driver/commit/e2255fe92d1a4e3bb129b840b06a61fc312d1a11))
|
|
2595
|
+
|
|
2596
|
+
## [4.12.4](https://github.com/appium/appium-xcuitest-driver/compare/v4.12.3...v4.12.4) (2022-11-29)
|
|
2597
|
+
|
|
2598
|
+
## [4.12.3](https://github.com/appium/appium-xcuitest-driver/compare/v4.12.2...v4.12.3) (2022-11-25)
|
|
2599
|
+
|
|
2600
|
+
## [4.12.2](https://github.com/appium/appium-xcuitest-driver/compare/v4.12.1...v4.12.2) (2022-11-06)
|