How to pass page as an argument like post in WordPress?

Pages are posts, you just need to change the post_type to page:

$args_automobile_just_launched_bike = array(
    'posts_per_page' => 3,
    'post_type'      => 'page',
    'order'          => 'DESC',
    'meta_query'     => array(
        array(
            'key'   => 'wpcf-new-launch-bikes',
            'value' => '1',
        ),
    ),
);

tech