v8.22.0
·
404 commits
to master
since this release
🚀 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@123will download browser:chrome, version:123.testplane install-deps chrome-darkwill download browser with idchrome-darkfrom testplane configtestplane install-deps chrome@123 chrome-darkwill download both browsers.