George S. Baugh 4 년 전
부모
커밋
44c1c69b11
3개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 0 0
      bin/playwright_server
  2. 5 0
      example.pl
  3. 1 0
      generate_api_json.sh

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
bin/playwright_server


+ 5 - 0
example.pl

@@ -119,3 +119,8 @@ $page->select('#drphil')->click();
 my $chooseu = $handle->await( $choochoo );
 $chooseu->setFiles('test.jpg');
 
+# Make sure we can do child selectors
+my $parent = $page->select('body');
+my $child = $parent->select('#drphil');
+print ref($child)."\n";
+

+ 1 - 0
generate_api_json.sh

@@ -1,4 +1,5 @@
 #!/bin/bash
 pushd ../playwright
+git pull
 node utils/doclint/generateApiJson.js > ../playwright-perl/api.json
 popd

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.