Currently I have IEDriver 32 and 64 bit executable files in m system path. When I initiate tests from Serenity BDD it automatically selects 64bit version. Can I control this selection using any specific property?
Asked
Active
Viewed 232 times
0
-
I can see using Selenium it can be done like `System.setProperty("webdriver.ie.driver", driverPath)` http://stackoverflow.com/questions/10995314/driver-executable-must-be-set-by-the-webdriver-ie-driver-system-property – Saikat Mar 06 '17 at 05:05
1 Answers
0
Create a serenity.properties file in the Serenity root dir. Then add these below:
webdriver.driver=ie
webdriver.ie.driver=path to 32/64 bit IE Driver exe
This should fix your issues.

ASM
- 709
- 2
- 8
- 27