mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2026-05-28 07:59:41 +00:00
5 lines
156 B
Python
5 lines
156 B
Python
def test_not_found(s):
|
|
s.get('http://localhost:29013/some_random_page')
|
|
h1 = s.find_element_by_css_selector('h1')
|
|
assert h1.text == 'Not Found'
|