aerokube / cm

Configuration manager for Aerokube products
https://aerokube.com/cm/latest/
Apache License 2.0
119 stars 31 forks source link

Unable to configure multiple non-consecutive versions of browsers #206

Closed sagarwadhwa1 closed 5 years ago

sagarwadhwa1 commented 5 years ago

I'm trying to configure multiple versions for Chrome and Firefox but the configuration manager only configures the biggest version.

My command: ./cm selenoid configure --browsers "firefox:45.0;firefox:59.0;chrome:56.0;chrome:61.0;chrome:65.0;chrome:67.0;chrome:71.0" --tmpfs 256 --force

browsers.json produced:

{ "chrome": { "default": "71.0", "versions": { "71.0": { "image": "selenoid/chrome:71.0", "port": "4444", "path": "/", "tmpfs": { "/tmp": "size=256m" } } } }, "firefox": { "default": "59.0", "versions": { "59.0": { "image": "selenoid/firefox:59.0", "port": "4444", "path": "/wd/hub", "tmpfs": { "/tmp": "size=256m" } } } } }