Skip to content

Commit 1c334a4

Browse files
gpsLocation capability update
1 parent 75e9cfb commit 1c334a4

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

docs/espresso-supported-capabilities.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ This document provide details about the features and capabilities supported for
6161
| network.har | Boolean | To generate the network logs in .har format, pass the value as `network.har: true` only works with `network:true` |
6262
| build | String | To set the Espresso build name. Example: `build: My Espresso Build`. |
6363
| geoLocation | String | Set the geolocation country code if you want to enable the same in your test. Example - `geoLocation: FR`|
64+
| gpsLocation | String & Float | The capability should be defined to override the device’s default GPS coordinates and should be provided as a comma-separated string. Example: `"gpsLocation": "-73.935242,40.730610"`.|
6465
| tunnel, tunnelName | Boolean | To activate the tunnel mode, pass the value as `tunnel: true` and provide the name of your tunnel as `tunnelName: NewTunnel` |
6566
| disableAnimation | Boolean | Set this to `true` if you want to disable animations for espresso tests. **Default:** `false` |
6667
| clearPackageData | Boolean | Set this to `true` if you want to clear the app data after each test has completed running. **Default**: `false` |

docs/getting-started-with-flutter-dart-android-automation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ The following capabilities are supported:
283283
7. **deviceLog:** Boolean value to generate device logs. Example: `true`.
284284
8. **build:** Set the name of your Flutter test build. Example: `My Flutter Build`.
285285
9. **autoGrantPermissions:** Boolean value to automatically grant the required permissions based on the [Android manifest](https://developer.android.com/guide/topics/manifest/manifest-intro) in the app’s **.apk** Example: `true`.
286+
10. **gpsLocation:** This capability should be defined to override the device’s default GPS coordinates and should be provided as a comma-separated string. Example: `"gpsLocation": "-73.935242,40.730610"`.
286287

287288

288289

docs/getting-started-with-flutter-dart-ios-automation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ The following capabilities are supported:
183183
8. **tunnel:** Boolean value to run build via Tunnel. Example: `true`.
184184
9. **tunnelName:** Name of the tunnel to be used in conjunction with `tunnel` capability.
185185
10. **region:** String to device the region from which device will be allocated. Example - `eu`,`us`,`ap`.
186+
11. **gpsLocation:** This capability should be defined to override the device’s default GPS coordinates and should be provided as a comma-separated string. Example: `"gpsLocation": "-73.935242,40.730610"`.
186187

187188

188189
## Running Tests in Parallel

docs/xcui-supported-capibilities.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ This document provide details about the features and capabilities supported for
5959
| deviceLog | Boolean | To generate the device logs, pass the value as `deviceLog: true` |
6060
| network | String | To generate the network logs, pass the value as `network: true`. |
6161
| build | String | To set the Espresso build name. Example: `build: My Espresso Build`. |
62-
| geoLocation | String | Set the geolocation country code if you want to enable the same in your test. Example - `geoLocation: FR`|
62+
| geoLocation | String | Set the geolocation country code if you want to enable the same in your test. Example: `geoLocation: FR`|
63+
| gpsLocation | String & Float | The capability should be defined to override the device’s default GPS coordinates and should be provided as a comma-separated string. Example: `"gpsLocation": "-73.935242,40.730610"`.|
6364
| tunnel, tunnelName | Boolean | To activate the tunnel mode, pass the value as `tunnel: true` and provide the name of your tunnel as `tunnelName: NewTunnel` |
6465
| resignApp <br /> <br />Not supported in **Virtual Devices** | Boolean | Set this to `false` if you want to to prevent the apps from being re-signed. The app should be built for enterprise distribution. |
6566

0 commit comments

Comments
 (0)