Add e2e/ dir with Robot Framework tests for page loading, ban records, blocklist import, config edit. Add requirements.txt. Update Makefile with test commands. Update .gitignore, backend docs, testing requirements docs.
16 lines
440 B
Plaintext
16 lines
440 B
Plaintext
*** Settings ***
|
|
Resource ${CURDIR}/../../resources/common.resource
|
|
Resource ${CURDIR}/../../resources/auth.resource
|
|
|
|
*** Test Cases ***
|
|
Ban Records Are Visible
|
|
New Browser chromium headless=${TRUE}
|
|
Login As Admin
|
|
|
|
Go To ${FRONTEND_URL}/bans
|
|
|
|
# Basic presence check — the ban table or empty state should be present.
|
|
${content}= Get Page Source
|
|
Should Not Be Empty ${content}
|
|
|
|
Close Browser |