1

I am running e2e test cases for angular2 app using protractor.

So far my tests are getting compiled & results are generated.

But I cant see whats happening on browser as operations are quite fast.

I want to know how to reduce the speed of these test cases so I will be able to track the form data & other things correctly.

If I can add delay then how to do it?

thanks

Bhushan Gadekar
  • 13,485
  • 21
  • 82
  • 131

1 Answers1

0

pauses the script, need to have console opend

document.body.innerHTML = 20;
var x = 15 * 5;
debugger;
document.body.innerHTML = x;
Endless
  • 34,080
  • 13
  • 108
  • 131