Getting this error trying to login, a render before and after the creds entry. Seems like the login modal hasn't loaded. I've changed the timeout to 30 seconds and nothing changes. Any ideas?
console.log("[LOGIN PAGE OPEN after 3 seconds]");
page.render("image1.png");
page.evaluate(function(creds) {
console.log("[CREDS] " + JSON.stringify(creds, undefined, 4));
$('#login-input-username').val(creds.username);
$('#login-input-password').val(creds.password);
$('#login-window form').submit();
}, function() {
console.log("[CHECK LOGIN]");
page.render("image2.png");
