我使用以下java代码
启动Selenium网格GridHubConfiguration config = new GridHubConfiguration();
config.setHost("localhost");
config.setPort(5555);
Hub hub = new Hub(config);
try {
hub.start();
} catch (Exception e) {
}
当我打开http://localhost:5555/grid/console
时,页面会完全打开,如果我点击"查看配置"页面上的链接会引发错误,如下所示: -
HTTP错误:500
访问/grid/console
时遇到问题。
原因:com.google.gson.JsonPrimitive无法转换为 为java.lang.Integer。我使用的是2.44.0版本。
我不确定是什么导致了这个问题。有人能指出我上面的代码有什么问题。