i have a test for a registration form (name, email, pw), and i'd like to have it so that it uses a randomly generated email address each time so i don't have to do any cleanup or editing of the test. do i need helper files for this or can i do it within the test?
my snippet looks like this --
casper.then(function() {
this.echo('signing up with the follow credentials:', 'COMMENT');
this.fill('.sign_up', {
'name': 'mariah carey',
'email': 'mariahcarey@dododoodo.com',
'password': 'testtest123'
}, true);