3d-interface/utils/load/load.js

62 lines
1.3 KiB
JavaScript
Raw Normal View History

2015-09-29 09:20:07 +02:00
var baseUrl = 'http://localhost:4000/';
var baseUrl = 'http://3dinterface.no-ip.org/';
function makeId()
{
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( var i=0; i < 5; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
var fs = require('fs');
var casper = require('casper').create({
stepTimeout: 100000,
waitTimeout: 100000
});
2015-09-28 16:04:37 +02:00
var limit = 100;
2015-09-29 09:20:07 +02:00
casper.start(baseUrl);
for (var i = 0; i < limit; i++) {
(function(i) {
2015-09-29 09:20:07 +02:00
casper.thenOpen(baseUrl + 'user-study', function() {
console.log(i);
this.getHTML();
// this.waitForSelector('form#form', function() {
this.fillSelectors(
'form#form', {
'#inputId': makeId(),
'#sel1': '-15',
'#sel2': '3'
}, true
);
// }, true);
2015-09-29 09:20:07 +02:00
this.thenOpen(baseUrl + 'prototype/tutorial');
this.thenOpen(baseUrl + 'prototype/play');
this.thenOpen(baseUrl + 'prototype/play');
this.thenOpen(baseUrl + 'prototype/play');
2015-09-29 09:20:07 +02:00
this.thenOpen(baseUrl + 'logout');
});
})(i);
}
casper.run();