Files
Aniworld/tests/robot/__init__.robot
2026-06-21 12:32:44 +02:00

18 lines
641 B
Plaintext

*** Settings ***
Documentation Suite-level setup and teardown for Aniworld Robot Framework tests.
... Starts the FastAPI server, initializes Browser library, and cleans up after all tests.
Library Process
Library Browser
Library RequestsLibrary
Resource ${CURDIR}/resources/common.resource
Suite Setup Run Keywords
... Start Aniworld Server
... AND Wait For Server
... AND Initialize Browser
Suite Teardown Run Keywords
... Close Browser
... AND Stop Aniworld Server