api_commands.py 文件源码

python
阅读 20 收藏 0 点赞 0 评论 0

项目:mobile-monkey 作者: LordAmit 项目源码 文件源码
def adb_pidof_app(emulator: Emulator, apk: Apk):
    '''
    returns PID of running apk
    '''
    try:
        result = subprocess.check_output(
            [config.adb, '-s', 'emulator-' + emulator.port, 'shell', 'pidof', apk.package_name])
        result = result.decode().split('\n')[0]
        util.debug_print(result, flag=PRINT_FLAG)
        return result
    except subprocess.SubprocessError:
        print("maybe not found/uninstalled already")
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号