Playwright.pm 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731
  1. package Playwright;
  2. use strict;
  3. use warnings;
  4. #ABSTRACT: Perl client for Playwright
  5. use 5.006;
  6. use v5.28.0; # Before 5.006, v5.10.0 would not be understood.
  7. use constant IS_WIN => $^O eq 'MSWin32';
  8. use File::ShareDir();
  9. use File::Basename();
  10. use Cwd();
  11. use LWP::UserAgent();
  12. use Sub::Install();
  13. use Net::EmptyPort();
  14. use JSON::MaybeXS();
  15. use File::Which();
  16. use Capture::Tiny qw{capture_merged capture_stderr};
  17. use Carp qw{confess};
  18. use Playwright::Base();
  19. use Playwright::Util();
  20. # Stuff closet full of skeletons at BEGIN time
  21. use Playwright::ModuleList();
  22. no warnings 'experimental';
  23. use feature qw{signatures};
  24. =head1 SYNOPSIS
  25. use Playwright;
  26. my $handle = Playwright->new();
  27. my $browser = $handle->launch( headless => 0, type => 'chrome' );
  28. my $page = $browser->newPage();
  29. my $res = $page->goto('http://somewebsite.test', { waitUntil => 'networkidle' });
  30. my $frameset = $page->mainFrame();
  31. my $kidframes = $frameset->childFrames();
  32. # Grab us some elements
  33. my $body = $page->select('body');
  34. # You can also get the innerText
  35. my $text = $body->textContent();
  36. $body->click();
  37. $body->screenshot();
  38. my $kids = $body->selectMulti('*');
  39. =head1 DESCRIPTION
  40. Perl interface to a lightweight node.js webserver that proxies commands runnable by Playwright.
  41. Checks and automatically installs a copy of the node dependencies in the local folder if needed.
  42. Currently understands commands you can send to all the playwright classes defined in api.json (installed wherever your OS puts shared files for CPAN distributions).
  43. See L<https://playwright.dev/versions> and drill down into your relevant version (run `npm list playwright` )
  44. for what the classes do, and their usage.
  45. All the classes mentioned there will correspond to a subclass of the Playwright namespace. For example:
  46. # ISA Playwright
  47. my $playwright = Playwright->new();
  48. # ISA Playwright::BrowserContext
  49. my $ctx = $playwright->newContext(...);
  50. # ISA Playwright::Page
  51. my $page = $ctx->newPage(...);
  52. # ISA Playwright::ElementHandle
  53. my $element = $ctx->select('body');
  54. See example.pl for a more thoroughly fleshed-out display on how to use this module.
  55. =head2 Getting Started
  56. When using the playwright module for the first time, you may be told to install node.js libraries.
  57. It should provide you with instructions which will get you working right away.
  58. However, depending on your node installation this may not work due to dependencies for node.js not being in the expected location.
  59. To fix this, you will need to update your NODE_PATH environment variable to point to the correct location.
  60. =head3 Node Versions
  61. playwright itself tends to need the latest version of node to work properly.
  62. It is recommended that you use nvm to get a hold of this:
  63. L<https://github.com/nvm-sh/nvm>
  64. From there it's recommended you use the latest version of node:
  65. nvm install node
  66. nvm use node
  67. =head2 Documentation for Playwright Subclasses
  68. The documentation and names for the subclasses of Playwright follow the spec strictly:
  69. Playwright::BrowserContext => L<https://playwright.dev/docs/api/class-browsercontext>
  70. Playwright::Page => L<https://playwright.dev/docs/api/class-page>
  71. Playwright::ElementHandle => L<https://playwright.dev/docs/api/class-elementhandle>
  72. ...And so on. These classes are automatically generated during module build based on the spec hash built by playwright.
  73. See generate_api_json.sh and generate_perl_modules.pl if you are interested in how this sausage is made.
  74. You can check what methods are installed for each subclass by doing the following:
  75. use Data::Dumper;
  76. print Dumper($instance->{spec});
  77. There are two major exceptions in how things work versus the upstream Playwright documentation, detailed below in the C<Selectors> section.
  78. =head2 Selectors
  79. The selector functions have to be renamed from starting with $ for obvious reasons.
  80. The renamed functions are as follows:
  81. =over 4
  82. =item $ => select
  83. =item $$ => selectMulti
  84. =item $eval => evaluate
  85. =item $$eval => evalMulti
  86. =back
  87. These functions are present as part of the Page, Frame and ElementHandle classes.
  88. =head2 Scripts
  89. The evaluate() and evaluateHandle() functions can only be run in string mode.
  90. To maximize the usefulness of these, I have wrapped the string passed with the following function:
  91. const fun = new Function (toEval);
  92. args = [
  93. fun,
  94. ...args
  95. ];
  96. As such you can effectively treat the script string as a function body.
  97. The same restriction on only being able to pass one arg remains from the upstream:
  98. L<https://playwright.dev/docs/api/class-page#pageevalselector-pagefunction-arg>
  99. You will have to refer to the arguments array as described here:
  100. L<https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments>
  101. You can also pass Playwright::ElementHandle objects as returned by the select() and selectMulti() routines.
  102. They will be correctly translated into DOMNodes as you would get from the querySelector() javascript functions.
  103. Calling evaluate() and evaluateHandle() on Playwright::Element objects will automatically pass the DOMNode as the first argument to your script.
  104. See below for an example of doing this.
  105. =head3 example of evaluate()
  106. # Read the console
  107. $page->on('console',"return [...arguments]");
  108. my $promise = $page->waitForEvent('console');
  109. #TODO This request can race, the server framework I use to host the playwright spec is *not* FIFO (YET)
  110. sleep 1;
  111. $page->evaluate("console.log('hug')");
  112. my $console_log = $handle->await( $promise );
  113. print "Logged to console: '".$console_log->text()."'\n";
  114. # Convenient usage of evaluate on ElementHandles
  115. # We pass the element itself as the first argument to the JS arguments array for you
  116. $element->evaluate('arguments[0].style.backgroundColor = "#FF0000"; return 1;');
  117. =head2 Asynchronous operations
  118. The waitFor* methods defined on various classes fork and exec, waiting on the promise to complete.
  119. You will need to wait on the result of the backgrounded action with the await() method documented below.
  120. # Assuming $handle is a Playwright object
  121. my $async = $page->waitForEvent('console');
  122. $page->evaluate('console.log("whee")');
  123. my $result = $handle->await( $async );
  124. my $logged = $result->text();
  125. =head2 Getting Object parents
  126. Some things, like elements naturally are children of the pages in which they are found.
  127. Sometimes this can get confusing when you are using multiple pages, especially if you let the ref to the page go out of scope.
  128. Don't worry though, you can access the parent attribute on most Playwright::* objects:
  129. # Assuming $element is a Playwright::ElementHandle
  130. my $page = $element->{parent};
  131. =head2 Firefox Specific concerns
  132. By default, firefox will open PDFs in a pdf.js window.
  133. To suppress this behavior (such as in the event you are await()ing a download event), you will have to pass this option to launch():
  134. # Assuming $handle is a Playwright object
  135. my $browser = $handle->launch( type => 'firefox', firefoxUserPrefs => { 'pdfjs.disabled' => JSON::true } );
  136. =head2 Leaving browsers alive for manual debugging
  137. Passing the cleanup => 0 parameter to new() will prevent DESTROY() from cleaning up the playwright server when a playwright object goes out of scope.
  138. Be aware that this will prevent debug => 1 from printing extra messages from playwright_server itself, as we redirect the output streams in this case so as not to fill your current session with prints later.
  139. A convenience script has been provided to clean up these orphaned instances, `reap_playwright_servers` which will kill all extant `playwright_server` processes.
  140. =head2 Running multiple clients against the same playwright server
  141. To save on memory, this is a good idea. Pass the 'port' argument to the constructor, and we'll re-use anything listening on that port locally, and be sure to use it when starting up.
  142. This will also set the cleanup flag to false, so be sure you run `reap_playwright_servers` when you are sure that all testing on this server is done.
  143. =head2 Taking videos, Making Downloads
  144. We spawn browsers via BrowserType.launchServer() and then connect to them over websocket.
  145. This means you can't just set paths up front and have videos recorded, the Video.path() method will throw.
  146. Instead you will need to call the Video.saveAs() method after closing a page to record video:
  147. # Do stuff
  148. ...
  149. # Save video
  150. my $video = $page->video;
  151. $page->close();
  152. $video->saveAs('video/example.webm');
  153. It's a similar story with Download classes:
  154. # Do stuff
  155. ...
  156. # Wait on Download
  157. my $promise = $page->waitForEvent('download')
  158. # Do some thing triggering a download
  159. ...
  160. my $download = $handle->await( $promise );
  161. $download->saveAs('somefile.extension');
  162. Remember when doing an await() with playwright-perl you are waiting on a remote process on a server to complete, which can time out.
  163. You may wish to spawn a subprocess using a different tool to download very large files.
  164. If this is not an option, consider increasing the timeout on the LWP object used by the Playwright object (it's the 'ua' member of the class).
  165. =head2 Doing arbitrary requests
  166. When you either want to test APIs (or not look like a scraper/crawler) you'll want to issue arbitrary requests, such as POST/HEAD/DELETE et cetera.
  167. Here's how you go about that:
  168. print "HEAD http://google.com : \n";
  169. my $fr = $page->request();
  170. my $resp = $fr->fetch("http://google.com", { method => "HEAD" });
  171. print Dumper($resp->headers());
  172. print "200 OK\n" if $resp->status() == 200;
  173. The request() method will give you a Playwright::APIRequestContext object, which you can then call whichever methods you like upon.
  174. When you call fetch (or get, post, etc) you will then be returned a Playwright::APIResponse object.
  175. =head3 Differences in behavior from Selenium::Remote::Driver
  176. By default selenium has its selector methods obeying a timeout and waits for an element to appear.
  177. It then explodes when and element can't be found.
  178. To replicate this mode of operation, we have provided the try_until helper:
  179. # Args are $object, $method, @args
  180. my $element = Playwright::try_until($page, 'select', $selector) or die ...;
  181. This will use the timeouts described by pusht/popt (see below).
  182. =head2 Perl equivalents for playwright-test
  183. This section is intended to be read alongside the playwright-test documentation to aid understanding of common browser testing techniques.
  184. The relevant documentation section will be linked for each section.
  185. =head3 Annotations
  186. L<https://playwright.dev/docs/test-annotations/>
  187. Both L<Test::More> and L<Test2::V0> provide an equivalent to all the annotations but slow():
  188. =over 4
  189. =item B<skip or fixme> - Test::More::skip or Test2::Tools::Basic::skip handle both needs
  190. =item B<fail> - Test::More TODO blocks and Test2::Tools::Basic::todo
  191. =item B<slow> - Has no equivalent off the shelf. Playwright::pusht() and Playwright::popt() are here to help.
  192. # Examples assume you have a $page object.
  193. # Timeouts are in milliseconds
  194. Playwright::pusht($page,5000);
  195. # Do various things...
  196. ...
  197. Playwright::popt($page);
  198. See L<https://playwright.dev/docs/api/class-browsercontext#browser-context-set-default-timeout> for more on setting default timeouts in playwright.
  199. By default we assume the timeout to be 30s.
  200. =back
  201. =head3 Assertions
  202. As with before, most of the functionality here is satisfied with perl's default testing libraries.
  203. In particular, like() and cmp_bag() will do most of what you want here.
  204. =head3 Authentication
  205. Much of the callback functionality used in these sections is provided by L<Test::Class> and it's fixtures.
  206. =head3 Command Line
  207. Both C<prove> and C<yath> have similar functionality, save for retrying flaky tests.
  208. That said, you shouldn't do that; good tests don't flake.
  209. =head3 Configuration
  210. All the configuration here can simply be passed to launch(), newPage() or other methods directly.
  211. =head3 Page Objects
  212. This is basically what L<Test::Class> was written for specifically; so that you could subclass testing of common components across pages.
  213. =head3 Parallelizing Tests
  214. Look into L<Test::Class::Moose>'s Parallel runmode, C<prove>'s -j option, or L<Test2::Aggregate>.
  215. =head3 Reporters
  216. When using C<prove>, consider L<Test::Reporter> coupled with App::Prove::Plugins using custom TAP::Formatters.
  217. Test2 as of this writing (October 2012) supports formatters and plugins, but no formatter plugins have been uploaded to CPAN.
  218. See L<Test2::Manual::Tooling::Formatter> on writing a formatter yourself, and then a L<Test2::Plugin> using it.
  219. =head3 Test Retry
  220. C<prove> supports tests in sequence via the --rules option.
  221. It's also got the handy --state options to further micromanage test execution over multiple iterations.
  222. You can use this to retry flaking tests, but it's not a great idea in practice.
  223. =head3 Visual Comparisons
  224. Use L<Image::Compare>.
  225. =head3 Advanced Configuration
  226. This yet again can be handled when instantiating the various playwright objects.
  227. =head3 Fixtures
  228. L<Test::Class> and it's many variants cover the subject well.
  229. =head1 INSTALLATION NOTE
  230. If you install this module from CPAN, you will likely encounter a croak() telling you to install node module dependencies.
  231. Follow the instructions and things should be just fine.
  232. If you aren't, please file a bug!
  233. =head1 CONSTRUCTOR
  234. =head2 new(HASH) = (Playwright)
  235. Creates a new browser and returns a handle to interact with it.
  236. =head3 INPUT
  237. debug (BOOL) : Print extra messages from the Playwright server process. Default: false
  238. timeout (INTEGER) : Seconds to wait for the playwright server to spin up and down. Default: 30s
  239. cleanup (BOOL) : Whether or not to clean up the playwright server when this object goes out of scope. Default: true
  240. =cut
  241. our ( $spec, $server_bin, $node_bin, %mapper );
  242. sub _check_node {
  243. # Check that node is installed
  244. $node_bin = File::Which::which('node');
  245. confess("node must exist, be in your PATH and executable") unless $node_bin && -x $node_bin;
  246. my $path2here = File::Basename::dirname( Cwd::abs_path( $INC{'Playwright.pm'} ) );
  247. # Make sure it's possible to start the server
  248. $server_bin = File::Which::which('playwright_server');
  249. confess("Can't locate playwright_server!
  250. Please ensure it is installed in your PATH.
  251. If you installed this module from CPAN, it should already be.")
  252. unless $server_bin && -x $server_bin;
  253. # Attempt to start the server. If we can't do this, we almost certainly have dependency issues.
  254. my $output = '';
  255. if (IS_WIN) {
  256. $output = 'OK';
  257. } else {
  258. ($output) = capture_merged { system($node_bin, $server_bin, '--check') };
  259. }
  260. return if $output =~ m/OK/;
  261. warn $output if $output;
  262. confess( "playwright_server could not run successfully.
  263. See the above error message for why.
  264. It's likely to be unmet dependencies, or a NODE_PATH issue.
  265. Install of node dependencies must be done manually.
  266. Run the following:
  267. npm i express playwright uuid
  268. sudo npx playwright install-deps
  269. export NODE_PATH=\"\$(pwd)/node_modules\".
  270. If you still experience issues, run the following:
  271. NODE_DEBUG=module playwright_server --check
  272. This should tell you why node can't find the deps you have installed.
  273. ");
  274. }
  275. sub _build_classes {
  276. foreach my $class ( keys(%$spec) ) {
  277. $mapper{$class} = sub {
  278. my ( $self, $res ) = @_;
  279. my $class = "Playwright::$class";
  280. return $class->new(
  281. handle => $self,
  282. id => $res->{_guid},
  283. type => $class,
  284. parent => $self,
  285. );
  286. };
  287. }
  288. }
  289. sub BEGIN {
  290. our $SKIP_BEGIN;
  291. _check_node() unless $SKIP_BEGIN;
  292. }
  293. sub new ( $class, %options ) {
  294. #XXX yes, this is a race, so we need retries in _start_server
  295. my $port = $options{port} // Net::EmptyPort::empty_port();
  296. my $timeout = $options{timeout} // 30;
  297. my $self = bless(
  298. {
  299. ua => $options{ua} // LWP::UserAgent->new(),
  300. port => $port,
  301. debug => $options{debug},
  302. cleanup => ( $options{cleanup} || !$options{port} ) // 1,
  303. pid => _start_server( $port, $timeout, $options{debug}, $options{cleanup} // 1 ),
  304. parent => $$ // 'bogus', # Oh lawds, this can be undef sometimes
  305. timeout => $timeout,
  306. },
  307. $class
  308. );
  309. $self->_check_and_build_spec();
  310. _build_classes();
  311. return $self;
  312. }
  313. sub _check_and_build_spec ($self) {
  314. return $spec if ref $spec eq 'HASH';
  315. $spec = Playwright::Util::request(
  316. 'GET', 'spec', $self->{port}, $self->{ua},
  317. );
  318. confess("Could not retrieve Playwright specification. Check that your playwright installation is correct and complete.") unless ref $spec eq 'HASH';
  319. return $spec;
  320. }
  321. =head1 METHODS
  322. =head2 launch(HASH) = Playwright::Browser
  323. The Argument hash here is essentially those you'd see from browserType.launch(). See:
  324. L<https://playwright.dev/docs/api/class-browsertype#browsertypelaunchoptions>
  325. There is an additional "special" argument, that of 'type', which is used to specify what type of browser to use, e.g. 'firefox'.
  326. =cut
  327. sub launch ( $self, %args ) {
  328. Playwright::Base::_coerce(
  329. $spec->{BrowserType}{members},
  330. args => [ \%args ],
  331. command => 'launch'
  332. );
  333. delete $args{command};
  334. my $msg = Playwright::Util::request(
  335. 'POST', 'session', $self->{port}, $self->{ua},
  336. type => delete $args{type},
  337. args => [ \%args ]
  338. );
  339. return $Playwright::mapper{ $msg->{_type} }->( $self, $msg )
  340. if ( ref $msg eq 'HASH' )
  341. && $msg->{_type}
  342. && exists $Playwright::mapper{ $msg->{_type} };
  343. return $msg;
  344. }
  345. =head2 server (HASH) = MIXED
  346. Call Playwright::BrowserServer methods on the server which launched your browser object.
  347. Parameters:
  348. browser : The Browser object you wish to call a server method upon.
  349. command : The BrowserServer method you wish to call
  350. The most common use for this is to get the PID of the underlying browser process:
  351. my $browser = $playwright->launch( browser => chrome );
  352. my $process = $playwright->server( browser => $browser, command => 'process' );
  353. print "Browser process PID: $process->{pid}\n";
  354. BrowserServer methods (at the time of writing) take no arguments, so they are not processed.
  355. =cut
  356. sub server ( $self, %args ) {
  357. return Playwright::Util::request(
  358. 'POST', 'server', $self->{port}, $self->{ua},
  359. object => $args{browser}{guid},
  360. command => $args{command},
  361. );
  362. }
  363. =head2 await (HASH) = Object
  364. Waits for an asynchronous operation returned by the waitFor* methods to complete and returns the value.
  365. =cut
  366. sub await ( $self, $promise ) {
  367. my $obj = Playwright::Util::await($promise);
  368. return $obj unless $obj->{_type};
  369. my $class = "Playwright::$obj->{_type}";
  370. return $class->new(
  371. type => $obj->{_type},
  372. id => $obj->{_guid},
  373. handle => $self
  374. );
  375. }
  376. =head2 pusht(Playwright::Page, INTEGER timeout, BOOL navigation) = null
  377. Like pushd/popd, but for default timeouts used by a Playwright::Page object and it's children.
  378. If the 'navigation' option is high, we set the NavigationTimeout rather than the DefaultTimeout.
  379. By default 'navigation' is false.
  380. If we popt to the bottom of the stack, we will set the timeout back to 1 second.
  381. =cut
  382. sub pusht($object,$timeout, $navigation=0) {
  383. $object->{timeouts} //= [];
  384. push(@{$object->{timeouts}}, $timeout);
  385. return $object->setDefaultNavigationTimeout($timeout) if $navigation;
  386. return $object->setDefaultTimeout($timeout);
  387. }
  388. =head2 popt(Playwright::Page, BOOL navigation) = null
  389. The counterpart to pusht() which returns the timeout value to it's previous value.
  390. =cut
  391. sub popt ($object, $navigation=0) {
  392. $object->{timeouts} //= [];
  393. my $last_timeout = pop(@{$object->{timeouts}}) // 1000;
  394. return $object->setDefaultNavigationTimeout($last_timeout) if $navigation;
  395. return $object->setDefaultTimeout($last_timeout);
  396. }
  397. =head2 try_until(Object, STRING method, LIST args), try_until_die(...)
  398. Try to execute the provided method upon the provided Playwright::* object until it returns something truthy.
  399. Quits after the timeout (or 1s, if pusht is not used before this) defined on the object is reached.
  400. Use this for methods which *don't* support a timeout option, such as select().
  401. =cut
  402. sub try_until ($object, $method, @args) {
  403. my ($ctr, $result, $timeout) = (0);
  404. $timeout = $object->{timeouts}[-1] if ref $object->{timeouts} eq 'ARRAY';
  405. $timeout = $timeout / 1000 if $timeout;
  406. $timeout //= 1;
  407. while (!$result) {
  408. $result = $object->$method(@args);
  409. last if $result;
  410. sleep 1;
  411. $ctr++;
  412. last if $ctr >= $timeout;
  413. };
  414. return $result;
  415. }
  416. =head2 quit, DESTROY
  417. Terminate the browser session and wait for the Playwright server to terminate.
  418. Automatically called when the Playwright object goes out of scope.
  419. =cut
  420. sub quit ($self) {
  421. # Prevent double destroy after quit()
  422. return if $self->{killed};
  423. # Prevent destructor from firing in child processes so we can do things like async()
  424. # This should also prevent the waitpid below from deadlocking due to two processes waiting on the same pid.
  425. my $ppid = $$ // 'hokum'; # If $$ is undef both here and in the parent, let's just keep going
  426. return unless $ppid == $self->{parent};
  427. # Prevent destructor from firing in the event the caller instructs it to not fire
  428. return unless $self->{cleanup};
  429. # Make sure we don't mash the exit code of things like prove
  430. local $?;
  431. $self->{killed} = 1;
  432. print "Attempting to terminate server process...\n" if $self->{debug};
  433. Playwright::Util::request( 'GET', 'shutdown', $self->{port}, $self->{ua} );
  434. return $self->_kill_playwright_server_windows() if IS_WIN;
  435. # 0 is always WCONTINUED, 1 is always WNOHANG, and POSIX is an expensive import
  436. # When 0 is returned, the process is still active, so it needs more persuasion
  437. foreach (0..3) {
  438. return unless waitpid( $self->{pid}, 1) == 0;
  439. sleep 1;
  440. }
  441. # Advanced persuasion
  442. print "Forcibly terminating server process...\n" if $self->{debug};
  443. kill('TERM', $self->{pid});
  444. #XXX unfortunately I can't just do a SIGALRM, because blocking system calls can't be intercepted on win32
  445. foreach (0..$self->{timeout}) {
  446. return unless waitpid( $self->{pid}, 1 ) == 0;
  447. sleep 1;
  448. }
  449. warn "Could not shut down playwright server!";
  450. return;
  451. }
  452. sub DESTROY ($self) {
  453. $self->quit();
  454. }
  455. sub _wait_port( $port ) {
  456. # Check if the port is already live, and short-circuit if this is the case.
  457. if (IS_WIN) {
  458. sleep 5;
  459. my $result = qx{netstat -na | findstr "$port"};
  460. return !!$result;
  461. }
  462. return Net::EmptyPort::wait_port( $port, 1 )
  463. }
  464. sub _start_server ( $port, $timeout, $debug, $cleanup ) {
  465. $debug = $debug ? '--debug' : '';
  466. # Check if the port is already live, and short-circuit if this is the case.
  467. if ( _wait_port( $port ) ) {
  468. print "Re-using playwright server on port $port...\n" if $debug;
  469. # Set the PID as something bogus, we don't really care as we won't kill it
  470. return "REUSE";
  471. }
  472. $ENV{DEBUG} = 'pw:api' if $debug;
  473. return _start_server_windows( $port, $timeout, $debug, $cleanup ) if IS_WIN;
  474. my $pid = fork // confess("Could not fork");
  475. if ($pid) {
  476. print "Waiting for playwright server on port $port to come up...\n" if $debug;
  477. Net::EmptyPort::wait_port( $port, $timeout )
  478. or confess("Server never came up after 30s!");
  479. print "done\n" if $debug;
  480. return $pid;
  481. }
  482. # Orphan the process in the event that cleanup => 0
  483. if (!$cleanup) {
  484. print "Detaching child process...\n";
  485. chdir '/';
  486. require POSIX;
  487. die "Cannot detach playwright_server process for persistence" if POSIX::setsid() < 0;
  488. require Capture::Tiny;
  489. capture_merged { exec( $node_bin, $server_bin, "--port", $port, $debug ) };
  490. die("Could not exec!");
  491. }
  492. exec( $node_bin, $server_bin, "--port", $port, $debug );
  493. }
  494. sub _start_server_windows ( $port, $timeout, $debug, $cleanup) {
  495. my $pid = qq/playwright-server:$port/;
  496. my @cmdprefix = ("start /MIN", qq{"$pid"});
  497. my $node_bin = File::Which::which('node');
  498. my $server_bin = File::Which::which('playwright_server');
  499. my $cmdstring = join(' ', @cmdprefix, qq{"$node_bin"}, qq{"$server_bin"}, "--port", $port, $debug );
  500. print "$cmdstring\n" if $debug;
  501. system($cmdstring);
  502. _wait_port( $port );
  503. return $pid;
  504. }
  505. sub _kill_playwright_server_windows ($self) {
  506. my $killer = qq[taskkill /FI "WINDOWTITLE eq $self->{pid}"];
  507. print "$killer\n" if $self->{debug};
  508. system($killer);
  509. return 1;
  510. }
  511. 1;