如何在 HtmlUnit 测试用例中添加用户名/密码身份验证信息?

发布于 2024-09-14 12:25:27 字数 241 浏览 4 评论 0原文

我正在通过 http 协议访问 svn 存储库。当我将网址输入 Internet Explorer 时,它会提示我输入用户名/密码的对话框,然后文件会在浏览器中正确加载。

我需要做的是从这个 svn 存储库中下载大量来自不同标签的文件。我试图使用 HtmlUnit 自动下载这些文件。不幸的是,它给了我“401需要授权...”错误。我不知道如何在 HtmlUnit 测试中设置用户 ID/密码信息。

请问有好心人可以帮我解决这个问题吗?

I am accessing an svn repository via http protocol. When I put in the url into Internet Explorer, it prompts me with a dialog box for username / password and then the file loads up correctly in the browser.

What I need to do is download a ton of files from different tags from this svn repository. I was trying to automate downloading these files using HtmlUnit. Unfortunately it gives me the "401 Authorization Required ..." error. I don't know how to set the userid /password information in my HtmlUnit test.

Can a kind soul help me out with this please?

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

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

发布评论

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

评论(2

守不住的情 2024-09-21 12:25:27

你可以这样做:

DefaultCredentialsProvider credentialsProvider =
    (DefaultCredentialsProvider) webClient.getCredentialsProvider();
credentialsProvider.addCredentials("username", "password");
//OR
credentialsProvider.addNTLMCredentials("username", "password", null, -1, "localhost", "domain");

You can do something like:

DefaultCredentialsProvider credentialsProvider =
    (DefaultCredentialsProvider) webClient.getCredentialsProvider();
credentialsProvider.addCredentials("username", "password");
//OR
credentialsProvider.addNTLMCredentials("username", "password", null, -1, "localhost", "domain");
小耗子 2024-09-21 12:25:27

您必须使用 IE 或网络浏览器吗?您可以安装 svn 或 TortoiseSVN 并使用 svn 检出整个存储库,甚至使用 http 协议。

Do you have to use IE or a web browser? You can install svn or TortoiseSVN and checkout the entire repository with svn, even with the http protocol.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文