当前位置:   article > 正文

python写刷课脚本_python opencv 知到 刷课 脚本

stderr = stderr.decode('utf-8')

下载adb工具

链接:https://pan.baidu.com/s/1fuobUremdbrs2uQ2Yvo5NQ

提取码:or7m

查看设备

adb devices

a42befe7fe19feb75b8690a7a3846a19.png

测试截图

将截屏文件保存到电脑上

import subprocess

class Screenshot(): # 截取手机屏幕并保存到电脑

def __init__(self):

# 查看连接的手机

connect = subprocess.Popen("adb devices", stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True)

stdout, stderr = connect.communicate() # 获取返回命令

# 输出执行命令结果结果

stdout = stdout.decode("utf-8")

stderr = stderr.decode("utf-8")

print(stdout)

print(stderr)

def screen(self, cmd): # 在手机上截图

screenExecute = subprocess.Popen(str(cmd), stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True)

stdout, stderr = screenExecute.communicate()

# 输出执行命令结果结果

stdout = stdout.decode("utf-8")

stderr = stderr.decode("utf-8")

print(stdout)

print(stderr)

def saveComputer(self, cmd): # 将截图保存到电脑

screenExecute = subprocess.Popen(s

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/726543
推荐阅读
相关标签
  

闽ICP备14008679号