Files
butterfly/test/selenium/test_index.py
2013-12-17 11:57:05 +01:00

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')