在新选项卡中打开图片,就像右键单击 - 在 Firefox 中查看图像 (WatiN)

发布于 2024-12-07 22:48:19 字数 123 浏览 0 评论 0原文

我需要在新选项卡中打开图像,方法与单击图像上的右键然后选择“在 Firefox 中查看图像”完全一样。由于一些棘手的 JavaScript,复制图片网址并使用 browser.Goto 不会给我所需的结果。有人能给我一些建议吗?谢谢

I need to open image in new tab exactly as it's being done by clicking right button on it and then selecting View Image in firefox. Copying pic url and using browser.Goto doesn't give me the result i need due to some tricky javascript. Could anyone give me some suggestions? Thanks

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

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

发布评论

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

评论(1

痴者 2024-12-14 22:48:19

老问题了,一些回答仅供参考。

获取您要查找的图像的 src 属性,然后使用该地址打开一个新的 IE 实例(您可能需要附加基本网站地址以及您要查找的图像的 src 属性中的任何内容。一些代码:

Image btnLogin = Window.Image(Find.ByName("TheImageNameOrAnyOtherAttribute"));
string imageAddress = btnLogin.GetAttributeValue("src");

var newBrowser = new IE();
newBrowser.GoTo("http://www.somesite.com/"+imageAddress);

Old question, some answer for reference only.

Get the src attribute for the image you are looking for and then open a new instance of IE with that address (you will probably need to append the base website address plus whatever there is in the src attribute for the image you are looking for. Some code for that:

Image btnLogin = Window.Image(Find.ByName("TheImageNameOrAnyOtherAttribute"));
string imageAddress = btnLogin.GetAttributeValue("src");

var newBrowser = new IE();
newBrowser.GoTo("http://www.somesite.com/"+imageAddress);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文