"""Wait scene: a simple pause between other scenes."""
from __future__ import annotations

from . import register


@register("wait")
def scene_wait(page, scene: dict) -> None:
    page.wait_for_timeout(scene.get("duration", 1000))
