Setting IEDriverServer Location with Protractor

Where can I determine the path of the IEDriverServer? Is this in the protractor configuration file? If so, how can I do it right?
I searched forever, but most solutions seem to give answers in java, I use protractor with grunt and node, whenever I run the grunt task that I created for IE, or change the name of the capabilities browser in IE, I get the following error in console / webstorm:

The path to the driver executable file must be set using the webdriver.ie.driver system property;

a search that usually leads me to an article that leads me to

http://code.google.com/p/selenium/wiki/InternetExplorerDriver

but, frankly, it doesn’t help much when loading the driver, because it does not say where, or how, I set this system property.

I hope I will be clean. Thank.

+4
source share
1 answer

This path refers to the PATH environment variable. You can verify this by placing the driver executable somewhere like C:\Windows\System32\that should already be in PATH, and run the tests.

PATH, > a > > . "". , . , :

;C:\Drivers\

+4

Source: https://habr.com/ru/post/1530455/


All Articles