Kaynağa Gözat

make the selector type more specific in the ffx name polyfill

George S. Baugh 7 yıl önce
ebeveyn
işleme
e623a9beb3
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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"]}
         };
     }