Files
python-tdd/functional_tests.py

7 lines
154 B
Python
Raw Normal View History

2025-12-29 21:52:45 -05:00
from selenium import webdriver
browser = webdriver.Firefox()
browser.get("http://localhost:8000")
assert "Congratulations!" in browser.title
print("OK")