In my thucydides.properties file I have the Following:
webdriver.ie.driver = C:\\Users\\Scott-H\\IEDriverServer.exe
webdriver.chrome.driver = C:\\Users\\Scott-H\\chromedriver.exe
chrome works fine internet explorer does not. To get ie to run I have to manualy set the system properties as so in my tests.
System.setProperty("webdriver.ie.driver", "C:\\Users\\Scott-H\\IEDriverServer.exe");
FAILED TO CREATE NEW WEBDRIVER_DRIVER INSTANCE
does anyone have any ideas why one would work but not the other?
@Story(Application.Search.SearchByKeyword.class)
@RunWith(ThucydidesRunner.class)
public class CreateContactTest {
@Managed
public WebDriver driver;
Where the driver is being created