How to search CPTs in draft using get_page_by_title()

You could try this:

$args = array("post_type" => "mytype", "s" => $title, 'post_status => array('draft'));
$posts = get_posts( $args );