commit/galaxy-central: Dave Bouvier: Fill form by name instead of number.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/43cc213c5d8e/ Changeset: 43cc213c5d8e User: Dave Bouvier Date: 2013-10-14 19:55:39 Summary: Fill form by name instead of number. Affected #: 1 file diff -r 7642e520cbb6767b2aba379b1681447c186a00ee -r 43cc213c5d8e531a2c31d06531a7566c2df43366 test/base/twilltestcase.py --- a/test/base/twilltestcase.py +++ b/test/base/twilltestcase.py @@ -952,11 +952,11 @@ # HACK: don't use panels because late_javascripts() messes up the twill browser and it # can't find form fields (and hence user can't be logged in). self.visit_url( "%s/user/create?cntrller=%s&use_panels=False" % ( self.url, cntrller ) ) - tc.fv( '1', 'email', email ) - tc.fv( '1', 'redirect', redirect ) - tc.fv( '1', 'password', password ) - tc.fv( '1', 'confirm', password ) - tc.fv( '1', 'username', username ) + tc.fv( 'registration', 'email', email ) + tc.fv( 'registration', 'redirect', redirect ) + tc.fv( 'registration', 'password', password ) + tc.fv( 'registration', 'confirm', password ) + tc.fv( 'registration', 'username', username ) tc.submit( 'create_user_button' ) previously_created = False username_taken = False Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org