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.
13 lines
342 B
Plaintext
13 lines
342 B
Plaintext
*** Settings ***
|
|
Resource ${CURDIR}/../../resources/common.resource
|
|
|
|
*** Test Cases ***
|
|
Page Loads And Shows Navigation
|
|
New Browser chromium headless=${TRUE}
|
|
New Page ${FRONTEND_URL}
|
|
|
|
# Confirm the page title or root element is present.
|
|
${title}= Get Title
|
|
Should Not Be Empty ${title}
|
|
|
|
Close Browser |