{
  // Get hero id from the first 
  let _id = await detail.all(by.css('div')).first().getText();
  // Get name from the h2
  let _name = await detail.element(by.css('h4')).getText();
  return {
    id: +_id.substr(_id.indexOf(' ') + 1),
    name: _name.substr(0, _name.lastIndexOf(' '))
  };
}