소스 검색

make the selector type more specific in the ffx name polyfill

George S. Baugh 7 년 전
부모
커밋
e623a9beb3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/Selenium/Remote/Driver.pm

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

@@ -2850,7 +2850,7 @@ sub _build_find_params {
     # geckodriver doesn't accept name as a valid selector
     if ($self->isa('Selenium::Firefox') && $using eq 'name') {
         return {
-            using => 'css',
+            using => 'css selector',
             value => qq{[name="$query"]}
         };
     }