Mega issue to discuss playwright support for more platforms.
Older versions of our core browsers
As we upstream our patches and time goes on, the current versions of the browsers playwright supports will naturally be the older versions. Firefox ESR is supported for up to a year though, so we might get some value by specifically releasing an older version.
Branded Chromium
These should just work today by specifying executablePath and running with the chromium object. They provide some small value over testing against the Chromium we download because they turn on different feature flags, and can play different media types. We could be doing more to help people with compatibility between the playwright package version and the specific branded browser they have.
Electron
Electron is supported with playwright-electron package.
Mobile Browsers
- iOS Safari
- Android Chrome
Right now we fake these browsers. It would be cool to be able to run tests directly against them. Maybe we can use the IOS simulator?
Internet Explorer
IE is still around somehow, and people want to test against it. The new Edge is based on Chromium, but still has an IE mode. It's very unlikely we would get our full feature set into IE. But having a small playwright-compatible subset of features could help tide people over until IE finally goes away. We could potentially wrap the work that has been done on WebDriver here.
Mega issue to discuss playwright support for more platforms.
Older versions of our core browsers
As we upstream our patches and time goes on, the current versions of the browsers playwright supports will naturally be the older versions. Firefox ESR is supported for up to a year though, so we might get some value by specifically releasing an older version.
Branded Chromium
These should just work today by specifying
executablePathand running with thechromiumobject. They provide some small value over testing against the Chromium we download because they turn on different feature flags, and can play different media types. We could be doing more to help people with compatibility between the playwright package version and the specific branded browser they have.Electron
Electron is supported with
playwright-electronpackage.Mobile Browsers
Right now we fake these browsers. It would be cool to be able to run tests directly against them. Maybe we can use the IOS simulator?
Internet Explorer
IE is still around somehow, and people want to test against it. The new Edge is based on Chromium, but still has an IE mode. It's very unlikely we would get our full feature set into IE. But having a small playwright-compatible subset of features could help tide people over until IE finally goes away. We could potentially wrap the work that has been done on WebDriver here.