7 lines
154 B
Python
7 lines
154 B
Python
|
|
from selenium import webdriver
|
||
|
|
|
||
|
|
browser = webdriver.Firefox()
|
||
|
|
browser.get("http://localhost:8000")
|
||
|
|
|
||
|
|
assert "Congratulations!" in browser.title
|
||
|
|
print("OK")
|