Skip to content

Instantly share code, notes, and snippets.

@asciidisco
Created May 27, 2014 09:41
Show Gist options
  • Save asciidisco/e5a511e2e2be480d8e1f to your computer and use it in GitHub Desktop.
Save asciidisco/e5a511e2e2be480d8e1f to your computer and use it in GitHub Desktop.
var myLoopedFn = function (test) {
test.open('http://google.de')
.click('#hugendubel')
.assert.text('#hugendubel', 'Steinlaus')
.wait(2000)
.assert.text('#hugendubel', 'Weinlaus')
.done();
};
var myObj = {};
// to the task multiple times
for(var i = 0; i <= 10; ++i) {
myObj['Repeated run #' + i] = myLoopedFn;
}
module.exports = myObj;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment