1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 09:48:20 +08:00

Initial commit

This commit is contained in:
LmeSzinc
2020-03-29 01:22:46 +08:00
commit ce4887a4f5
283 changed files with 20185 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
import time
import numpy as np
from module.config.config import AzurLaneConfig
from module.device.device import Device
class EmulatorChecker(Device):
def stress_test(self):
record = []
count = 0
self._screenshot_adb()
while 1:
t0 = time.time()
# self._screenshot_adb()
self._screenshot_uiautomator2()
# self._click_adb(1270, 360)
# self._click_uiautomator2(1270, 360)
cost = time.time() - t0
record.append(cost)
count += 1
print(count, np.round(np.mean(record), 3), np.round(np.std(record), 3))
class Config:
SERIAL = '127.0.0.1:62001'
# SERIAL = '127.0.0.1:7555'
# SERIAL = 'emulator-5554'
# SERIAL = '127.0.0.1:21503'
USE_ADB_SREENSHOT = False
az = EmulatorChecker(AzurLaneConfig().merge(Config()))
az.stress_test()