audoWin/tests/test_schema.py

12 lines
325 B
Python
Raw Normal View History

2025-12-19 16:24:04 +08:00
# MIT License
# Copyright (c) 2024
"""最小端到端测试schema 校验。"""
from autodemo.schema import DSLSpec
def test_dsl_schema_defaults() -> None:
spec = DSLSpec(steps=[{"action": "click", "target": {"Name": "btn"}}])
assert spec.retry_policy["max_attempts"] == 2
assert spec.waits["appear"] == 5.0