我有一个登录网站的窗口。例如,我在hotmail上登录了我的电子邮件。是否可以打开一个干净的窗口/浏览器并登录到另一个电子邮件,使用该窗口/浏览器进行测试,然后关闭或切换浏览器并进行更多测试?
答案 0 :(得分:1)
要打开新窗口,您可以试试这个
selenium.openWindow("Url To Open","MyWindow");
selenium.selectWindow("MyWindow");
//Do your operations here
selenium.selectWindow(null);//This will take you to default Window
希望这会对你有所帮助。