I have this very simple test. However when I run with the parameters 'debug 
protractor_conf.js' the test is no paused where I have 
'browser.debugger();' hence I cannot view console output.

describe('homepage', function() {

    it('should load the page', function() {
        browser.get('#/login');
        browser.debugger();

        var url = browser.getCurrentUrl();

        var version = element(by.binding('version'));

        browser.debugger();


        expect(version.getText()).toEqual('1.0.0');
    },10000);
});

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to