18 lines
641 B
Plaintext
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
|