在 htmlunit 中,如何获取单击元素时发送的请求?

发布于 2024-08-17 23:37:32 字数 116 浏览 3 评论 0原文

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

回答评论,现在我想更改发送的标头,但发布值或目标网址也可能感兴趣。我想在发送之前抓取请求,修改它并发送。

I want to find a way to get the settings of the request that would be sent if I clicked a certain link. I want to send the request after making some modifications. Is that possible?

Answering the comments, right now I want to change the headers sent, but post values or target url may be of interest too. I want to grab the request before it is sent, modify it and send.

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

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

发布评论

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

评论(1

奶气 2024-08-24 23:37:32

您可以子类化 HttpWebConnection 并操作“设置”,如下所示:

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

You can subclass HttpWebConnection and manipulate the 'settings', as in:

    webClient.setWebConnection(new HttpWebConnection(webClient) {
        public WebResponse getResponse(WebRequestSettings settings) throws IOException {
            System.out.println(settings.getUrl());
            return super.getResponse(settings);
        }
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文