I need some help with SlimerJS. Basically my program needs to take input from stdin periodically to do the next task.
The following code works well with PhantomJS+CasperJS in case of reading from an external input, but fails to do the same in SlimerJS+CasperJS.
some code ...
var nextLink = system.stdin.readLine();
some code ...
Any thoughts about how to solve this problem ?