Parsing the Page

I wrote a small js script, I want to enter the site by login and password and parsing data birthday and name users on the page I need. But i do not know what i need to do further

var page = require('webpage').create();
phantom.cookiesEnabled = true;
page.open("http://www.facebook.com/login.php", function(status) {

  if (status === "success") {
    page.evaluate(function() {
        document.getElementById("email").value = "[email protected]";
        document.getElementById("pass").value = "12345";
        document.getElementById("u_0_1").click();
    });


window.setTimeout(function() {
       page.render("fb.png");
    }, 5000);

page.open('https://www.facebook.com/friends/requests/?fcref=ff', function() {
      window.setTimeout(function() {
       page.render("fb2.png");
       phantom.exit();
    }, 5000);
    });
  }
});