Selenium 测试 - 检查 url 是否返回 pdf

发布于 2024-10-13 03:07:27 字数 309 浏览 2 评论 0原文

我正在创建一个硒测试。该应用程序为用户创建一个 pdf 文件。我想知道如何测试 url 返回 pdf 文件。我并不关心 pdf 中的内容,只关心 pdf 中创建的内容。

I have a selenium test I am creating. The application creates a pdf for the user. I want to know how to test that a url returns a pdf file. I don't really care what is in the pdf, just that one got created.

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

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

发布评论

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

评论(2

一梦浮鱼 2024-10-20 03:07:27

或者,首先发出 HEAD 请求来检查 url 是否已创建,然后检查 content_length 标头,该标头应该是非零大小,或者您的情况下合理的最小大小。

Alternatively, make a HEAD request first to check if the url is created, then inspect content_length header, which should be nonzero size, or whatever is reasonable minimum size in your case.

三寸金莲 2024-10-20 03:07:27

您可以测试 //meta[contains(@http-equiv,Content-Type)][contains(@content,pdf)] 是否存在!

我没有测试!

Can you test if //meta[contains(@http-equiv,Content-Type)][contains(@content,pdf)] exists!

I did not test !

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