You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stepping using debugger while watching test execution in browser.
What do you get instead?
I get a bunch of promises that evaluate immediately, meaning the browser does nothing until I hit pause() or the test completes, then the commands start to execute.
/// <reference path="../steps.d.ts" />Feature('Checking debug');Scenario('test something',(I)=>{I.amOnPage("/");I.see("CRM Online");pause();// or a breakpointI.see("Log in with your registered account");I.click("Next");// step to here, and browser is still not doing anything.});