一旦创建了Apache console.log(grid.data)
,如何从中获取配置值(以前是".col-sm-4 >div>div>div>label>strong"
)?
例如,如果我做这样的事情来创建客户端:
HttpClient
如何从HttpParams
实例中获得连接请求超时的值?其他配置项目?
对于RequestConfig requestConfig = RequestConfig.custom()
.setCircularRedirectsAllowed(true)
.setAuthenticationEnabled(true)
.setExpectContinueEnabled(true)
.setConnectionRequestTimeout(10000);
.build();
HttpClient client = HttpClientBuilder
.create()
.setConnectionManager(new PoolingHttpClientConnectionManager(createSchemeRegistry()))
.setDefaultRequestConfig(requestConfig)
.build();
,有一种方法org.apache.http.client.HttpClient
(或类似方法),但是已经不再支持AbstractHttpClient
接口了。在此过程中生成了一个getParams
实例,但我认为它没有公开。
我对此感兴趣的原因首先是要进行测试-我想验证HTTP客户端配置是否正确,另一种情况是在调试HTTP流量时在UI中显示该信息-想像Charles代理之类的东西。