mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2026-05-30 00:49:40 +00:00
12 lines
281 B
Python
12 lines
281 B
Python
|
|
def test_index(s):
|
|
s.get('http://localhost:29013/')
|
|
assert 'Apparatus' in s.title
|
|
assert s.find_element_by_css_selector('h1')
|
|
|
|
|
|
def test_index_2(s):
|
|
s.get('http://localhost:29013/')
|
|
assert 'Apparatus' in s.title
|
|
assert s.find_element_by_css_selector('ol')
|