Commit ce54777a ce54777a080b25a5b62e43ca22da39de098ae1cd by Nicolas Perriault

reset popups stack on start()

1 parent 937dd1d8
1 Subproject commit 894589c17a3d7f76e76ce849e5f41d9e6fb4aedf 1 Subproject commit f4720fa8946c88df0404b6f9c4790ca2d43826ac
......
...@@ -1397,6 +1397,7 @@ Casper.prototype.start = function start(location, then) { ...@@ -1397,6 +1397,7 @@ Casper.prototype.start = function start(location, then) {
1397 this.log('Starting...', "info"); 1397 this.log('Starting...', "info");
1398 this.startTime = new Date().getTime(); 1398 this.startTime = new Date().getTime();
1399 this.history = []; 1399 this.history = [];
1400 this.popups = popup.createStack();
1400 this.steps = []; 1401 this.steps = [];
1401 this.step = 0; 1402 this.step = 0;
1402 // Option checks 1403 // Option checks
......