소스 검색

Restore proxy functionality

The coerce attribute for the proxy wasn't returning anything, so the
values for the proxy weren't being respected.
Daniel Gempesaw 11 년 전
부모
커밋
b7df7d2bd7
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      lib/Selenium/Remote/Driver.pm

+ 1 - 0
lib/Selenium/Remote/Driver.pm

@@ -273,6 +273,7 @@ has 'proxy' => (
                 croak "proxyAutoconfigUrl should be of format http://";
             }
         }
+        $proxy;
     },
 );