1

我有一个登录到网站的窗口。例如,我在 hotmail 上登录了我的电子邮件。是否可以在此基础上打开一个干净的窗口/浏览器并登录另一封电子邮件,使用该窗口/浏览器进行测试,然后关闭或切换浏览器并进行更多测试?

4

1 回答 1

1

要打开一个新窗口,您可以试试这个

selenium.openWindow("Url To Open","MyWindow");
selenium.selectWindow("MyWindow");

//Do your operations here

selenium.selectWindow(null);//This will take you to default Window

希望这会对你有所帮助。

于 2012-12-01T04:34:01.137 回答