i am running tests with SE2 and firefoxDriver in a headless enviroment(Xvfb). With FirefoxDriver i can set the DISPLAY enviroment property very easy: FirefoxBinary firefox = new FirefoxBinary(); firefox.setEnvironmentProperty("DISPLAY",":"+DISPLAY); FirefoxProfile firefoxProfile = new ProfilesIni().getProfile(Config.webDriverFirefoxProfile); this.webDriver = new FirefoxDriver(firefox,firefoxProfile);
How can i do the above with ChromeDriver?
Cheers!
UPDATE: Seems that this is not possible to do yet! There is a similar question with mine here where explains the situation.ChromeDriver Headless