How do I get multiple pages by title?

You will need to create a new function. My example is a fork of the core function. The following will allow you to create a query across all published posts regardless of post_type, unless you desire that specific set.

function get_posts_by_title($page_title, $post_type = false, $output = OBJECT ) {
    global $wpdb;

    //Handle specific post type?
    $post_type_where = $post_type ? 'AND post_type = %s' : '';

    //Query all columns so as not to use get_post()
    $results = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE post_title = %s $post_type_where AND post_status="publish"", $page_title, $post_type ? $post_type : '' ) );

    if ( $results ){
        $output = array();
        foreach ( $results as $post ){
            $output[] = $post;
        }
        return $output;
    }
    return null;
}

//This should get you an array of all posts with 'Foo Bar' as the title
get_posts_by_title('Foo Bar');