chromote 0.3.0
-
The headless mode used by Chrome can now be selected with the
chromote.headless
option orCHROMOTE_HEADLESS
environment variable.In Chrome v128, a new headless mode became the default. The new mode uses the same browser engine as the regular Chrome browser, whereas the old headless mode is built on a separate architecture. The old headless mode may be faster to launch and is still well-suited to many of the tasks for which chromote is used.
For now, to avoid disruption, chromote defaults to using the old headless mode. In the future, chromote will follow Chrome and default to
"new"
headless mode. (And at some point, Chrome intends to remove the old headless mode which is now offered as a separate binary.) To test the new headless mode, useoptions(chromote.headless = "new")
orCHROMOTE_HEADLESS="new"
(in.Renviron
or viaSys.setenv()
). (#172)