use the chromedriver npm package to download the webdriver version compatible with the installed chrome version

This commit is contained in:
Art Lowel
2021-04-14 16:42:11 +02:00
parent edc4753efc
commit 6e7fe85b47
3 changed files with 11 additions and 2 deletions

View File

@@ -7,4 +7,8 @@ config.capabilities = {
}
};
// don't use protractor's webdriver, as it may be incompatible with the installed chrome version
config.directConnect = false;
config.seleniumAddress = 'http://localhost:4444/wd/hub';
exports.config = config;