In protractor, is there a way to add explicit wait between each test run, which has the same effect as Thread.sleep in Java?
you could either start protractor in debug mode
run protractor debug debugging/yourConfigFile.js
and add browser.debugger();
in your test spec where you want it to stop
here a link to the debugging docs
or just use browser.sleep(valueInMilliSeconds);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With