v8.22.0
🚀 Improvements
Added ability to run Testplane with automatically downloaded browsers (#1029)
With --local
cli option (or gridUrl: "local"
) Testplane will automatically download requested version of chrome
or firefox
and launch its webdriver before running Testplane tests itself.
Also it is possible to download browsers + webdrivers manually with testplane install-deps
command, which will try to download all browsers, specified in testplane config.
testplane install-deps
could also be launched with args, which are either browserId
from testplane config, either browser with its tag version. Examples:
testplane install-deps chrome@123
will download browser:chrome
, version:123
.testplane install-deps chrome-dark
will download browser with idchrome-dark
from testplane configtestplane install-deps chrome@123 chrome-dark
will download both browsers.