Files
butterfly/test/selenium/test_index.py
2014-01-02 10:19:19 +01:00

12 lines
177 B
Python

def test_index(s):
s.go('/')
assert 'Apparatus' in s.title
assert s('h1')
def test_index_2(s):
s.go('/')
assert 'Apparatus' in s.title
assert s('ol')