diff --git a/index.js b/index.js index 80531d4..6a29266 100644 --- a/index.js +++ b/index.js @@ -77,7 +77,11 @@ var webdriver_update = function(opts, cb) { if (options) { if (options.browsers) { options.browsers.forEach(function(element, index, array) { - args.push("--" + element); + if (element.toLowerCase() === "ie") { + args.push("--ie32"); + } else { + args.push("--" + element); + } }); } }