Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Multithread trong Python
04:48 27-08-2021
1.167 lượt xem
1 bình luận
07:26 27-08-2021
Chào Kteam,
Mình có học theo Adb tool nhưng sử dụng ngôn ngữ Python, mình chưa hiểu lắm về luồng trong Python, nhờ Kteam chỉ giúp mình về vấn đề này với. Mình muốn sử dụng multithreading để chạy cùng lúc nhiều thiết bị.
from ppadb.client import Client as AdbClient
import time
from python_imagesearch.imagesearch import imagesearch
def getDevice():
# Default is "127.0.0.1" and 5037
client = AdbClient(host="127.0.0.1", port=5037)
devices = client.devices()
if (len(devices) < 0):
print("0 device")
return 0
return devices[1]
device = getDevice()
def postFacebook():
# Trở về màn hình home va cho 3s
device.input_keyevent(3)
time.sleep(1)
# Nhấn vào ldstore chở 1 giây
device.input_tap(398, 168)
time.sleep(5)
# Nhấn vào search
device.input_tap(1197, 41)
time.sleep(5)
# # Nhấn vào icon facebook chở 1 giây
# # device.input_tap(574, 647)
# # time.sleep(2)
# # Gõ text facebook chở 3 giây
device.input_text("facebook")
device.input_keyevent(66)
time.sleep(2)
pos = imagesearch("facebooklogo.png")
if pos[0] != -1:
print("position : ", pos[0], pos[1])
device.input_tap(pos[0], pos[1])
time.sleep(2)
device.input_tap(1462, 173)
time.sleep(5)
device.input_tap(1333, 219)
else:
print("image not found")
# # Nhan vao icon facebook cho 2 s
# device.input_tap(124, 242)
# time.sleep(2)
# # Nhấn install
device.input_tap(1462, 173)
time.sleep(5)
device.input_tap(1333, 219)
postFacebook()
Xin cảm ơn!
bạn tham khảo nha
URL