使用 Watin 单击 Gmail 注销链接

发布于 2024-10-31 11:37:14 字数 125 浏览 1 评论 0原文

我在两台不同的计算机上使用 IE8 和 IE9,我想单击我的 Gmail 帐户的注销链接。

Watin 无法找到注销链接并给出错误。

谁能帮助我并让我知道如何实现这一目标。

谢谢 亚西尔

I am using IE8 and IE9 on 2 different machines and I want to click the signout link of my gmail account.

Watin is unable to find the signout link and gives me error.

Could anyone please help me and let me know how can I achieve this.

Thanks
Yasir

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

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

发布评论

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

评论(1

煞人兵器 2024-11-07 11:37:14

期待您创建一个浏览器实例,我认为这可以解决问题:

var signOutBtn = browser.Frame("canvas_frame").Link(Find.ByText("Sign out"));
signOutBtn.Click();

顺便说一句,请务必更新到 WatiN 2.1,它可以正确支持 IE9 中的框架。

expecting you have created a browser instance I think this will do the trick:

var signOutBtn = browser.Frame("canvas_frame").Link(Find.ByText("Sign out"));
signOutBtn.Click();

BTW be sure to update to WatiN 2.1 which supports frames in IE9 properly.

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