I\'m new on protractor, and I\'m trying to implement an e2e test. I don\'t know if this is the right way to do this, but... The page that I want to test is not a full angula
Thanks to answers above, this was my simplified and updated usage
function waitFor (selector) { return browser.wait(function () { return browser.isElementPresent(by.css(selector)); }, 50000); }