-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Tech stack:
asp.net web forms
.NET Framework 4.0
Steps to reproduce:
- create an aspx form with a username and password field and a submit button
- create a test (here's my sample)
module.exports = {
'I can log in': function(test) {
test
.open('myLogin.aspx')
.assert.url().is('myLogin.aspx', 'At the login page')
.type('#oUserID', 'John', 'user name is')
.assert.val('#oUserID', 'John', 'text has been set')
.type('#oPwdID', 'pswdpswd1', 'password name is')
.assert.val('#oPwdID', 'pswdpswd1', 'password has been set')
.submit('#frmLogin')
.done();
}
};
- Test hangs/becomes unresponsive after the submit step.