Explorar o código

make the selector type more specific in the ffx name polyfill

George S. Baugh %!s(int64=7) %!d(string=hai) anos
pai
achega
e623a9beb3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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"]}
         };
     }