-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Protractor pause() debug mode does not work for cucumber framework #1790
Comments
Can you test jasmine quickly to see if the issue is with your environment+pause or cucumber+pause? just do something like describe('foo', function() {
it('bar', function() {
browser.get('http://www.angularjs.org');
browser.pause();
$('html').getText().then(console.log);
};
}); |
I tested jasmine code and it is working for jasmine version. |
I have the same issue with pause() on OS X Yosemite (10.10.3). I'm not using cucumber. Just trying to use pause() while going over the Angular tutorial. Note: I modified the tutorial to use latest protractor version(1.8.0). I had to because of another issue with chromedriver pointing to a Windows executable (i.e. "chromedriver.exe"). |
I just ran into the same issue. protractor --version node --version cucumber-js --version |
I think this issue is also a dup of this (#1890). Can everyone who encountered this issue confirm that they are using node > 0.10.30? |
Thanks @hankduan I'll attempt the downgrade you suggested on refer link and post back to that and this link as soon as I get a chance |
@hankduan I can confirm. Reverting from node 0.10.35 to 0.10.30 corrected the problem. |
Thanks for confirmation. I'm going to close this issue. Please track here: #1890 |
@hankduan Hate to do this to you, but the problem seems to be back now, even in 0.10.30. Not sure what changed to cause it.
|
Yep, this is happening again. Wonder if it has anything to do with updating to the latest version of webdriver. |
This happens to me on: Ubuntu 14.04 |
I am testing with 1.6.0 and 1.6.1 protractor with cucumber.js 0.4.7 on mac.
When I use browser.pause(), it will pause the test but will not take any command
The only command will work is ^C but it will terminate the test instead of continue to finish the rest of steps and scenarios. I would like to see 'repl' and '^C' to work with cucumber framework.
The text was updated successfully, but these errors were encountered: