I using console.log to write some elaborated msg about the current task/expect to be performed by protractor, but I found on console those messages are appearing before the actual task is performed in browser. Doing like this -
it('should validate all labels', function() {
....
element.sendKey('name');
console.log('name entered to user input');
...
});
Console log message is appearing before even the page is loaded in browser. So how to fix it?