StarRailCopilot/dev_tools/emulator_test.py

41 lines
1012 B
Python
Raw Normal View History

2020-03-28 17:22:46 +00:00
import time
import numpy as np
import module.config.server as server
server.server = 'cn' # Don't need to edit, it's used to avoid error.
2020-03-28 17:22:46 +00:00
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_SCREENSHOT = False
2020-03-28 17:22:46 +00:00
az = EmulatorChecker(AzurLaneConfig('template').merge(Config()))
2020-03-28 17:22:46 +00:00
az.stress_test()