I am using selenium concurrently element checking using timer in c#
. If element found the call back will call then I need to continue the for loop.
This is my code, it is not working. Any Suggestions?
for (i = 0; i < list.length(); i++) {
//statement
mycallback((s) => { if(s) continue; }); // continue here
//statement
}