ソースを参照

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"]}
         };
     }