You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
I am running a protractor test to test if the proper URL is being displayed. When logging the method getCurrentUrl() within browser, I receive an object. Is there something I am missing?
describe('angularjs homepage todo list', function() {
it('should add a todo', function() {
browser.get('https://angularjs.org');
console.log(browser.getCurrentUrl());
});
});
Here is the output with the object logged instead of URL.