使用 Watin 从 ashx Url 获取图像
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.