溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python 實(shí)現(xiàn)手機(jī)自動(dòng)撥打電話的方法(通話壓力測(cè)試)

發(fā)布時(shí)間:2020-10-13 03:17:33 來(lái)源:腳本之家 閱讀:494 作者:shawn xie123 欄目:開(kāi)發(fā)技術(shù)

現(xiàn)在能用自動(dòng)化實(shí)現(xiàn)的,盡量使用自動(dòng)化程序去操作,代替人工去操作,更有效率。

今天說(shuō)下用python結(jié)合adb命令去實(shí)現(xiàn)安卓手機(jī)端的通話壓力測(cè)試。

#操作前先在設(shè)置里打開(kāi)power鍵可以結(jié)束通話按鈕,否則會(huì)導(dǎo)致代碼報(bào)錯(cuò)
from time import sleep
import os

def test_call(number1,number2,number3,number4,number5):
 #撥打電話
 call = os.popen('adb shell am start -a android.intent.action.CALL -d tel:{}'.format(number1))
 sleep(20)
 #掛斷電話
 Hangup = os.popen('adb shell input keyevent 26')
 sleep(5)
 call = os.popen('adb shell am start -a android.intent.action.CALL -d tel:{}'.format(number2))
 sleep(5)
 # 掛斷電話
 Hangup = os.popen('adb shell input keyevent 26')
 sleep(5)
 call = os.popen('adb shell am start -a android.intent.action.CALL -d tel:{}'.format(number3))
 sleep(20)
 # 掛斷電話
 Hangup = os.popen('adb shell input keyevent 26')
 sleep(5)
 call = os.popen('adb shell am start -a android.intent.action.CALL -d tel:{}'.format(number4))
 sleep(20)
 # 掛斷電話
 Hangup = os.popen('adb shell input keyevent 26')
 sleep(5)
 call = os.popen('adb shell am start -a android.intent.action.CALL -d tel:{}'.format(number5))
 sleep(20)
 # 掛斷電話
 Hangup = os.popen('adb shell input keyevent 26')
 sleep(2)


#你可以修改你要通話的號(hào)碼如下:
number1 = 10010
number2 = 10086
number3 = 10011
number4 = 12580
number5 =114

#執(zhí)行代碼:
test_call(number1,number2,number3,number4,number5)

#截圖
ScreenShot = os.popen('adb shell /system/bin/screencap -p /sdcard/xie.png')

#將截圖保存到電腦
SaveScreenShot = os.popen('adb pull /sdcard/xie.png')

以上這篇python 實(shí)現(xiàn)手機(jī)自動(dòng)撥打電話的方法(通話壓力測(cè)試)就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI