Emmanuel Peroumalnaik 11 лет назад
Родитель
Сommit
64ae437468
1 измененных файлов с 2 добавлено и 1 удалено
  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);