mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-23 17:11:42 +00:00
56992b1d7f
- Use `python -m dev_tools.button_extract` to run
41 lines
1012 B
Python
41 lines
1012 B
Python
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.
|
|
|
|
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
|
|
|
|
|
|
az = EmulatorChecker(AzurLaneConfig('template').merge(Config()))
|
|
az.stress_test()
|