mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00

…636)" The new node resolves loalhost to ::1 by default which breaks API tests in the ports (Java in particular). Reverting to the previous LTS to allow some time to implement happy eyeballs algorithm on our end by next release. This reverts commit 63a0b75186c984528dc661c6d334bb0fb6a7002a. Reference https://github.com/microsoft/playwright/issues/18790
Mapping distribution libraries to package names
Playwright requires a set of packages on Linux distribution for browsers to work.
Before launching browser on Linux, Playwright uses ldd
to make sure browsers have all
dependencies met.
If this is not the case, Playwright suggests users packages to install to meet the dependencies. This tool helps to maintain a map between package names and shared libraries it provides, per distribution.
Usage
To generate a map of browser library to package name on Ubuntu:bionic:
./run.sh ubuntu:bionic
Results will be saved to the RUN_RESULT
.
How it works
The script does the following:
- Launches docker with given linux distribution
- Installs playwright browsers inside the distribution
- For every dependency that Playwright browsers miss inside the distribution, uses
apt-file
to reverse-search package with the library.