Created
May 27, 2014 09:41
-
-
Save asciidisco/e5a511e2e2be480d8e1f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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