소스 검색

Fix inaccurate docs re: find_child_elements xpath

This was missed in #21.
Daniel Gempesaw 10 년 전
부모
커밋
3d287dd765
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      lib/Selenium/Remote/Driver.pm

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

@@ -2126,7 +2126,8 @@ sub find_child_element {
 
 
  Usage:
  Usage:
     my $elem1 = $driver->find_element("//select[\@name='ned']");
     my $elem1 = $driver->find_element("//select[\@name='ned']");
-    my $child = $driver->find_child_elements($elem1, "//option");
+    # note the usage of ./ when searching for a child element instead of //
+    my $child = $driver->find_child_elements($elem1, "./option");
 
 
 =cut
 =cut