Does CasperJs then() wait on emitted events in the previous function?

橙三吉。 提交于 2019-12-21 04:52:03

问题


I am just curious how CasperJS handles events with regards to the call stack.

Let's say we have some code:

casper.on('foo', function() {
    this.wait(60000);
    this.echo('foo');
});


casper.start('http://www.stackoverflow.com', function() {
    this.echo('start');
    this.emit('foo');
});


casper.then(function() {
    this.echo('done');
});

casper.run();

I know that then() will wait check against 3 flags: pendingWait, loadInProgress, and navigationRequested. Printing out the call stack shows the emit call to be in the function start(), so will start() not be considered finished until the event is finished? I.e. will then() wait until the event has finished

I tested this with wait of 60 seconds, and I did get the output:

start
foo
done

Though I was not sure if exceeding a certain timeout would trigger the next then().


回答1:


You have to keep in mind which functions are executed asynchronously. In your case the first two lines of the output are printed immediately when the page was loaded and done was printed 60 seconds later.

Things to know:

  • All then* and wait* functions will insert a step into the queue, but are themselves asynchronous.
  • casper.emit will look for the registered event handler and execute it immediately (non-asynchronous).
  • casper.echo will print something immediately (non-asynchronous).

The order of events is that in the start callback, which itself is a step function, an event is triggered and immediately executed. This executed event contains a wait call which adds a delayed step after the current one (we're still in the start callback). Then echo is executed and the current step is finished. The next step begins by waiting 60 seconds. Since no callback was passed to wait the next sheduled step is executed. This is the last step which contains echo('done').

So strictly speaking then doesn't wait for the event execution of the previous step, but in this case there was no break out of the control flow (usually done through setTimeout) and the CasperJS step processor has caught the inner wait step.



来源:https://stackoverflow.com/questions/27764128/does-casperjs-then-wait-on-emitted-events-in-the-previous-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!