在ubuntu机器下使用selenium,无显示

时间:2017-05-08 16:22:10

标签: google-chrome selenium selenium-webdriver selenium-chromedriver

我无法找到在ubuntu机器下运行selenium的方法,没有显示。

我有以下java代码:

cellValueFactory

此代码在我的本地计算机上运行正常但它在我的ubuntu服务器上不起作用。 这是" driver.navigate()。to(url);":

引发的异常
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd/MM/yyyy");
col_date.setCellFactory(tc -> new TableCell<ExampleTable, LocalDate>() {
    @Override
    protected void updateItem(LocalDate date, boolean empty) {
        super.updateItem(date, empty);
        if (empty) {
            setText(null);
        } else {
            setText(formatter.format(date));
        }
    }
});

我认为问题与我的ubuntu服务器上没有显示有关。

这是我在ubuntu服务器上安装的依赖项:

  • libnss3
  • 的GConf-2.4
  • libfontconfig
  • 谷歌 - 铬 - 稳定

有没有办法克服这个问题?

0 个答案:

没有答案