-
-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add more params in mobile: setGeolocation #867
Conversation
README.md
Outdated
satellites | number | no | Number of satellites being tracked (1-12). Available for emulators. | 2 | ||
speed | number | no | [Set the speed](https://developer.android.com/reference/android/location/Location#setSpeed(float)) in meters per second. Valid value is 0.0 or greater. | 30.0 | ||
bearing | number | no | [Set the bearing](https://developer.android.com/reference/android/location/Location#setBearing(float)) at the time of this location, in degrees. Available for real devices. Valid value is range in `[0, 360)`. | 10 | ||
accuracy | number | no | [Set the horizontal accuracy](https://developer.android.com/reference/android/location/Location#setAccuracy(float)) in meters of this location. Available for real devices. Valid value is is 0.0 or greater. | 10.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra space before Valid
, is
repeated twice
README.md
Outdated
@@ -1083,6 +1083,10 @@ Name | Type | Required | Description | Example | |||
latitude | number | yes | [Latitude](https://en.wikipedia.org/wiki/Latitude) value | 32.456 | |||
longitude | number | yes | [longitude](https://en.wikipedia.org/wiki/Longitude) value | 32.456 | |||
altitude | number | no | [Altitude](https://en.wikipedia.org/wiki/Altitude) value. Zero by default | 5.678 | |||
satellites | number | no | Number of satellites being tracked (1-12). Available for emulators. | 2 | |||
speed | number | no | [Set the speed](https://developer.android.com/reference/android/location/Location#setSpeed(float)) in meters per second. Valid value is 0.0 or greater. | 30.0 | |||
bearing | number | no | [Set the bearing](https://developer.android.com/reference/android/location/Location#setBearing(float)) at the time of this location, in degrees. Available for real devices. Valid value is range in `[0, 360)`. | 10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Valid values should be in range ...
## [4.1.0](v4.0.3...v4.1.0) (2025-02-26) ### Features * add more params in mobile: setGeolocation ([#867](#867)) ([8ead690](8ead690))
🎉 This PR is included in version 4.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
To support appium/appium-android-driver#986