my @products = $ua->get( $target )->res->dom->find('.product')->each; if( @products ){ # parse products here, print things etc }else{ warn "No products found"; # or don't bother with the else to be silent. }