~fs-8/selenium-simple-test/sst-remote-fixes

« back to all changes in this revision

Viewing changes to src/sst/selftests/admin_login.py

  • Committer: Tarmac
  • Author(s): Leo Arias
  • Date: 2013-04-23 14:17:04 UTC
  • mfrom: (388.2.1 last_flake)
  • Revision ID: tarmac-20130423141704-s28k5e5yijg05lvo
[r=vila] Fixed the remaining flake8 errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
sst.actions.write_textfield('id_password', 'password')
14
14
sst.actions.click_element(sst.actions.get_element(value='Log in'))
15
15
sst.actions.assert_title('Site administration | Django site admin')
16
 
sst.actions.assert_element(tag='h1', id='site-name', text='Django administration')
 
16
sst.actions.assert_element(
 
17
    tag='h1', id='site-name', text='Django administration')
17
18
 
18
19
# make sure you didn't get bounced back to login page
19
20
sst.actions.fails(sst.actions.assert_title, 'Log in | Django site admin')