Hello, CasperJS community.
I am using CasperJS for some my projects. Thank you very much, Nicolas.
By the way, sometimes, I would like to describe the logic,
like infinite loop and conditional break.
For example:
while(true) {
DO SOMETHING
if( CHECK CONDITION ) { break; }
DO SOMETHING
}
However, I can not find out the solution in current CasperJS.
So, I tried to solve this problem by my own way.
The project result is on my GitHub repository
I realized CasperJS Navigation Step Flow Control
by adding new label() and goto() functions.
This repository has useful sample scripts too.
Please feel free to try them.
Thank you.
Hiro Yotsumoto