You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/adb-commands-support.md
+84-46Lines changed: 84 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ Android Debug Bridge (adb) is a versatile command-line tool that lets users comm
50
50
51
51
LambdaTest provides support for limited commands which can be executed in your app automation test scripts via javascript executors. The following command with the below mentioned parameters need to be used to execute adb command with LambdaTest real device cloud.
The command is used to generate a swipe gesture by defining the coordinates of starting and ending point of the swipe. The following is a Python sample of using the adb swipe command with LambdaTest executor.
64
+
The command is used to generate a swipe gesture by defining the coordinates of starting and ending point of the swipe. The following is a Python sample of using the adb swipe command with LambdaTest executor.
The command is used to sends text as if typed at the keyboard in the real devices. The following is a Python sample of using the adb sendKeys command with LambdaTest executor.
75
+
The command is used to sends text as if typed at the keyboard in the real devices. The following is a Python sample of using the adb sendKeys command with LambdaTest executor.
76
76
77
-
```bash
78
-
params = {"command":"input-text", "text":"this is my text"}
79
-
result = driver.execute_script("lambda-adb",params)
80
-
```
77
+
```python
78
+
params = {"command":"input-text", "text":"this is my text"}
79
+
result = driver.execute_script("lambda-adb",params)
80
+
```
81
81
82
82
### Home Button
83
83
84
84
-**Navigate to the home screen** <RealDeviceTagvalue="Real Device" /> <VirtualDeviceTagvalue="Virtual Device" />
85
85
86
86
The command is used to navigate to the home screen of the device while running an app automation test script. The following is a Python sample of using the adb command to navigate to the home screen with LambdaTest executor.
87
87
88
-
```bash
88
+
```python
89
89
params = {"command":"keyevent", "keycode":3}
90
90
result = driver.execute_script("lambda-adb",params)
91
91
```
@@ -94,60 +94,80 @@ result = driver.execute_script("lambda-adb",params)
The command is used to auto rotate the screen of the device while running an app automation test script. The following is a Python sample using the adb command to allow auto rotation with LambdaTest executor.
97
+
The command is used to auto rotate the screen of the device while running an app automation test script. The following is a Python sample using the adb command to allow auto rotation with LambdaTest executor.
This command is used to obtain detailed information about installed packages on device. When you run this command, it provides a list of information for each package installed on the device. The output includes various details about each package.The following is a Python sample using the adb command:
108
+
This command is used to obtain detailed information about installed packages on device. When you run this command, it provides a list of information for each package installed on the device. The output includes various details about each package.The following is a Python sample using the adb command:
This command is used to retrieve system properties from an Android device. When executed, it provides a list of key-value pairs representing various system settings and configurations. These properties include information about the device's build, hardware, and other system-related details. The output can be useful for debugging, development or understanding the device's current state. The following is a Python sample using the adb command:
118
+
119
+
```python
120
+
params = {"command": "shell", "text": "getprop"}
121
+
result = driver.execute_script("lambda-adb",params)
This command is used to test the network connectivity between the Android device and a specified host, such as `google.com`. When executed it sends four ICMP request packets to the host and wait for responses. The output includes details such as packet transmission time, success rate and round-trip time, which helps diagnose network connectivity and latency issues. The following is a Python sample using the adb command:
127
+
128
+
> **Note :** The **-c** is required in this command
These commands enable or disable your app notifications on the device based on the value provided for `enableNotification`. **True** is used to enable notifications, while **False** is used to disable them.The following is a Python sample using the adb command with LambdaTest executor:
138
+
These commands enable or disable your app notifications on the device based on the value provided for `enableNotification`. **True** is used to enable notifications, while **False** is used to disable them.The following is a Python sample using the adb command with LambdaTest executor:
result = driver.execute_script("lambda-adb",params)
143
+
```
124
144
125
-
:::note
126
-
- These commands are compatible with Android versions 13 and above.
127
-
- When you disable app notification permissions using the command, the app go into the background. This behavior occurs due to limitations with ADB, and you need to reactivate the app through test script.
128
-
:::
145
+
:::note
146
+
- These commands are compatible with Android versions 13 and above.
147
+
- When you disable app notification permissions using the command, the app go into the background. This behavior occurs due to limitations with ADB, and you need to reactivate the app through test script.
This command is used to enable or disable battery optimization for your app on the device. The following is a Python sample using the adb command to disable battery optimization with LambdaTest executor:
154
+
This command is used to enable or disable battery optimization for your app on the device. The following is a Python sample using the adb command to disable battery optimization with LambdaTest executor:
This command serves to lock the screen rotation in alignment with the app's default behavior and user-defined settings. Below is a Python example utilizing the adb command to enforce fixed screen rotation with the LambdaTest executor:
165
+
This command serves to lock the screen rotation in alignment with the app's default behavior and user-defined settings. Below is a Python example utilizing the adb command to enforce fixed screen rotation with the LambdaTest executor:
Disabling animations can enhance test execution speed by preventing unnecessary visual effects. The following commands are used to disable different types of animations:
@@ -156,13 +176,31 @@ Disabling animations can enhance test execution speed by preventing unnecessary
156
176
-`adb shell settings put global transition_animation_scale 0`: Disables window transition animations, making UI transitions instant.
157
177
-`adb shell settings put global window_animation_scale 0`: Disables activity window animations, eliminating fade-in or zoom-in effects.
158
178
159
-
These commands set the respective global animation scales to 0, effectively disabling animations.
179
+
These commands set the respective global animation scales to 0, effectively disabling animations.
160
180
161
-
```java
162
-
Map<String, String> params =Map.of("command", "shell", "text", "settings get global animator_duration_scale");
### Enabling Automatic Timezone and Automatic Time Using ADB <VirtualDeviceTagvalue="Virtual Device App" />
187
+
By default, Automatic Timezone and Automatic Time settings are enabled on the device. These settings ensure that the device updates its time and timezone automatically based on network-provided information. If needed, you can manually enable these settings using ADB shell commands. To enable these settings via ADB, run the following commands:
188
+
189
+
-`settings put global auto_time_zone 1`: Enables Automatic Timezone, allowing the device to adjust its timezone based on network data.
190
+
-`settings put global auto_time 1`: Enables Automatic Time, ensuring that the device syncs time automatically from the network.
165
191
192
+
These commands help maintain accurate time and timezone settings without requiring manual intervention. If you're using Python with LambdaTest’s App Automation, you can execute these commands using the `execute_script` function:
193
+
194
+
```python
195
+
# Define ADB commands for enabling automatic time and timezone
196
+
params_timezone = {"command": "shell", "text": "settings put global auto_time_zone 1"}
197
+
params_time = {"command": "shell", "text": "settings put global auto_time 1"}
198
+
199
+
# Execute commands using LambdaTest's ADB execution method
This approach is particularly useful when testing applications that rely on correct time settings, ensuring they function properly across different time zones.
0 commit comments