如何使用 WatiN 在 IE 中打开新选项卡?
如何打开选项卡并转到“http://anotherwisite.com”?我尝试了这个:(
ie = new WatiN.Core.IE("https://somewebsite.com", true);
ie.TextField(WatiN.Core.Find.ByName("user")).TypeText(User.getName());
ie.TextField(WatiN.Core.Find.ByName("password")).TypeText(User.getPassword());
ie.Button(WatiN.Core.Find.Any).Click();
上面的代码打开一个 IE 并登录该人)
How can I open a tab and go to "http://anotherwisite.com"? I tried this:
ie = new WatiN.Core.IE("https://somewebsite.com", true);
ie.TextField(WatiN.Core.Find.ByName("user")).TypeText(User.getName());
ie.TextField(WatiN.Core.Find.ByName("password")).TypeText(User.getPassword());
ie.Button(WatiN.Core.Find.Any).Click();
(the above code opens an IE and log the person in)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我可以使用 Watin 代码打开一个新选项卡并打开新页面
:
我在 Firefox 中使用键盘 CTRL+T。
I can open a new Tab and open new page with Watin
Code:
I use the keyboard, CTRL+T in Firefox.
WatiN 中没有内置方法可以做到这一点。
There is no built-in method in WatiN to do that.