要使用Python模擬ADB命令來執行用戶操作,您可以使用subprocess
庫來調用ADB命令
首先,確保您已經安裝了ADB工具并將其添加到系統路徑中。然后,您可以使用以下代碼示例來模擬用戶操作:
import subprocess
def execute_adb_command(command):
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
output, error = process.communicate()
if process.returncode != 0:
print(f"Error occurred: {error.decode('utf-8')}")
else:
print(f"Output: {output.decode('utf-8')}")
# 示例:打開應用
open_app_command = "adb shell am start -n com.example.app/.MainActivity"
execute_adb_command(open_app_command)
# 示例:點擊按鈕(假設按鈕的坐標是(100, 200))
click_button_command = "adb shell input tap 100 200"
execute_adb_command(click_button_command)
# 示例:輸入文本(假設輸入框的坐標是(100, 100),文本是"Hello, World!")
input_text_command = "adb shell input text 'Hello, World!'"
execute_adb_command(input_text_command)
請注意,這些示例可能需要根據您的設備和應用程序進行調整。您需要根據實際情況替換包名、活動名和坐標等信息。