mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-01-09 05:47:30 +08:00
12 lines
418 B
Python
12 lines
418 B
Python
from module.device.screenshot import Screenshot
|
|
from module.config.config import AzurLaneConfig
|
|
from datetime import datetime
|
|
|
|
import module.config.server as server
|
|
|
|
server.server = 'cn' # Don't need to edit, it's used to avoid error.
|
|
|
|
s = Screenshot(AzurLaneConfig())
|
|
s.image = s.screenshot_uiautomator2()
|
|
filename = datetime.now().strftime("%d-%m-%Y_%I-%M-%S_%p")
|
|
s.image_save(f'./screenshots/' + filename + ".png") |