浏览弹出窗口?

发布于 2024-11-09 07:56:43 字数 190 浏览 0 评论 0原文

我想测试按下按钮后出现在网站弹出窗口中的链接。问题是我不知道该怎么做。我不知道弹出窗口的任何按钮的名称,甚至不知道 watin 是否可以通过它进行导航。

我曾经在网站中通过名称搜索按钮来检查链接(使用 IE 的开发工具来搜索按钮的名称),但弹出窗口时我不知道。

我该怎么做?有一个可以处理弹出窗口的功能吗?如何获取弹出窗口元素的名称?

I want to test the links that appear in a pop up in a website after pressing a button. The problem is that I dont know how to do it. I dont know the name of any buttons of the popup, and even dont know if the watin can navegate through it.

I used to check links in a website searching the button by the name (using development tool from IE to search the name of the buttons), but with the pop up I dont know.

How can i do it? There is a function to work with pop ups? How can I get the name of the elements of the pop up?

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

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

发布评论

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

评论(3

驱逐舰岛风号 2024-11-16 07:56:43

所有网站页面都是 html、javascript 和 css - 都是人类可读的。

尝试查看源代码。

ps 除非是 Flash 类型的应用程序,否则它们是可读的。

All website pages are html, javascript and css - all human readable.

Try viewing the source.

ps They are readable unless they are Flash type applications.

晨曦÷微暖 2024-11-16 07:56:43

安装 Firefox 的 Web Developer 扩展,右键单击该元素,选择“检查元素”。

Install the Web Developer extension for Firefox, right-click on the element, choose Inspect Element.

把回忆走一遍 2024-11-16 07:56:43

您必须附加到该弹出窗口。将其视为普通 IE 窗口。我记错了,但尝试这样的事情:

var popup = IE.AttachTo<IE>(Find.ByTitle("Title of the popup"));

You have to attach to that popup. Treat it like a normal IE window. I don't remember correctly, but try something like that:

var popup = IE.AttachTo<IE>(Find.ByTitle("Title of the popup"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文