gpt4 book ai didi

java - 在 htmlunit 中,我怎样才能获得点击元素时发送的请求?

转载 作者:行者123 更新时间:2023-11-29 04:03:14 25 4
gpt4 key购买 nike

我想找到一种方法来获取单击某个链接时将发送的请求的设置。我想在做一些修改后发送请求。这可能吗?

回答评论,现在我想更改发送的 header ,但发布值或目标 url 也可能很有趣。我想在发送之前抓取请求,修改它并发送。

最佳答案

您可以继承 HttpWebConnection 并操作“设置”,如:

    webClient.setWebConnection(new HttpWebConnection(webClient) {
public WebResponse getResponse(WebRequestSettings settings) throws IOException {
System.out.println(settings.getUrl());
return super.getResponse(settings);
}
});

关于java - 在 htmlunit 中,我怎样才能获得点击元素时发送的请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2050687/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com