以编程方式将EnvironmentProperty设置为ChromeDriver

发布于 2024-12-09 07:41:18 字数 609 浏览 0 评论 0原文

我正在无头中使用 SE2 和 firefoxDriver 运行测试 环境(Xvfb)。使用 FirefoxDriver 我可以非常设置 DISPLAY 环境属性 轻松:

     FirefoxBinary firefox = new FirefoxBinary(); 
     firefox.setEnvironmentProperty("DISPLAY",":"+DISPLAY); 
     FirefoxProfile firefoxProfile = new ProfilesIni().getProfile(Config.webDriverFirefoxProfile); 
     this.webDriver = new FirefoxDriver(firefox,firefoxProfile); 

如何使用 ChromeDriver 执行上述操作?

更新:似乎这还不可能做到!这里有一个与我类似的问题,其中解释了这种情况: ChromeDriver 无头

I am running tests with SE2 and firefoxDriver in a headless
enviroment(Xvfb). With FirefoxDriver I can set the DISPLAY environment property very
easily:

     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?

UPDATE: Seems that this is not possible to do yet! There is a similar question with mine here where explains the situation: ChromeDriver Headless

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

内心荒芜 2024-12-16 07:41:18

看起来他们已经解决了这个问题(至少现在)

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

这是代码中添加此方法的修订版:
http://code.google.com/p/selenium/source/detail?r=15232< /a>

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

宫墨修音 2024-12-16 07:41:18

另一种非编程方法,转到 /etc/chromium/default (或 /etc/chromium-browser/default 或类似的,取决于发行版)并在那里设置显示:

CHROMIUM_FLAGS="--display :99"

another non-programmatic approach, go to /etc/chromium/default (or /etc/chromium-browser/default or similar, depends on distribution) and set display there :

CHROMIUM_FLAGS="--display :99"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文