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

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

looks like they've fixed this (at least for now)

service = new ChromeDriverService.Builder()
        .usingChromeDriverExecutable(new File("/path/to/chromedriver"))
        .usingAnyFreePort()
        .withEnvironment(ImmutableMap.of("DISPLAY",":20"))
        .build();

Here's the revision in the code which adds this method: http://code.google.com/p/selenium/source/detail?r=15232

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.