使用 Watin 从 ashx Url 获取图像

发布于 2024-10-19 16:12:28 字数 504 浏览 3 评论 0原文

我想使用 watin 从 ashx url 获取图像任何人都可以告诉我如何使用 watin api

获取图像http://www.nmlsconsumeraccess.org/EntityDetails.aspx/COMPANY/76986 这是链接 当您打开此链接时,会出现验证码图像,其 url 为 ashx。

代码

IE ie = new IE();
ie.GoTo("http://www.nmlsconsumeraccess.org/EntityDetails.aspx/COMPANY/76986");
ie.WaitForComplete();

Image img = ie.Image(Find.ById("turingImage"));

img. ????

我想保存验证码图像

I wanna get the image from ashx url using watin can anybody tell me how to get image using watin api

http://www.nmlsconsumeraccess.org/EntityDetails.aspx/COMPANY/76986
this is the link
when you open this link there is the Captchas image which url is ashx.

code

IE ie = new IE();
ie.GoTo("http://www.nmlsconsumeraccess.org/EntityDetails.aspx/COMPANY/76986");
ie.WaitForComplete();

Image img = ie.Image(Find.ById("turingImage"));

img. ????

I wanna save the Captchas image

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

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

发布评论

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

评论(1

谁与争疯 2024-10-26 16:12:28

使用 ie 开发工具栏找到您需要的属性,在我的脑海中,它会是 img.src 或 img.url

虽然验证码的全部目的是停止自动化,所以您应该让您的开发人员部署一个未启用该功能的测试版本。

Using the ie developer toobar find you the property that you need, off the top of my head it would be img.src or img.url

The whole point of a Captcha though is to stop automation, so you should get your developers to deploy a test version that does not have it enabled.

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