You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but when running npm install, the latest version of Chromedriver is installed rather than the version I specified. How can I choose to install a specific version of Chromedriver?
The text was updated successfully, but these errors were encountered:
Comment by xywang68 Wednesday May 09, 2018 at 17:13 GMT
@windso , to install different versions of selenium and drivers, you can modify the lib/default-config.js file in your selenium-standalone module. The module is either inside your base node_modules/ if you installed it as your base module, or inside chimp's node_modules/ as its dependency.
After that, you can run "selenium-standalone install" to get them installed.
Without updating the default-config.js file, you can provide your own config.js and do "selenium-standalone install --config=<path to your config.js>".
obvious you need to provide full path to selenium-standalone script. Normally it is in node_modules/.bin if you install it yourself, or inside chimp/node_modules if it is installed as a chimp-js dependency.
Hope this information helps.
Issue by Windso
Friday Apr 20, 2018 at 18:19 GMT
Originally opened as xolvio/chimp#686
From my chimp.js configuration file
but when running
npm install
, the latest version of Chromedriver is installed rather than the version I specified. How can I choose to install a specific version of Chromedriver?The text was updated successfully, but these errors were encountered: