从代码运行 adb restart 命令总是会产生错误。事实上,设备重新启动,当 adb restart 命令直接从终端运行时,一切正常,但我不知道如何在 python 代码中正确处理这个问题(不幸的是,所有聊天 GPTt 建议都失败)。可能是重启时连接丢失,然后返回错误...
您有什么建议或者您知道如何处理吗?
完整代码:
import subprocess
def execute_adb(adb_command):
# print(adb_command)
result = subprocess.run(
adb_command,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
)
if result.returncode == 0:
return result.stdout.strip()
print(f"returncode {result.returncode}, stderr: {result.stderr.lower()}, stdout: {result.stdout}")
return "ERROR"
class AndroidController:
def __init__(self, device):
self.device = device
def is_device_online(self):
adb_command = f"adb -s {self.device} get-state"
result = execute_adb(adb_command)
return result == "device"
def reset_device(self):
adb_command = f"adb -s {self.device} shell reboot"
ret = execute_adb(adb_command)
return ret
controller = AndroidController("emulator-5554")
print(controller.is_device_online())
controller.reset_device()
输出:
True
returncode 255, stderr: , stdout:
Process finished with exit code 0
正如@Robert 在评论中提到的,正确的方法是
adb reboot
。两个命令都会执行此操作,但返回代码不同,这是使用此命令的另一个原因。
>>> subprocess.run(['adb', 'reboot'])
CompletedProcess(args=['adb', 'reboot'], returncode=0)
>>> subprocess.run(['adb', 'shell', 'reboot'])
CompletedProcess(args=['adb', 'shell', 'reboot'], returncode=255)