I have below code snippet
this.someVar = function(){
webpage.click();
wait(3);
domSomethingElse();
}
When I put debug point (in VS code)at wait(3), first line of code don't execute. Debugger waits until It read whole function block. My question is how to execute line by line in debug mode.