Emmanuel Peroumalnaik il y a 11 ans
Parent
commit
64ae437468
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      lib/Selenium/Remote/Mock/RemoteConnection.pm

+ 2 - 1
lib/Selenium/Remote/Mock/RemoteConnection.pm

@@ -127,7 +127,8 @@ sub request {
         my $resp;
         my $arr_of_resps = $self->session_store->{"$method $url $content"} // [];
         use DDP; 
-        p "$method $url $content";
+        my $s =  "$method $url $content";
+        p $s;
         if ( scalar(@$arr_of_resps) ) {
             $resp = shift @$arr_of_resps;
             $resp = HTTP::Response->parse($resp);