Playwright.pm 23 KB

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