Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个登录到网站的窗口。例如,我在 hotmail 上登录了我的电子邮件。是否可以在此基础上打开一个干净的窗口/浏览器并登录另一封电子邮件,使用该窗口/浏览器进行测试,然后关闭或切换浏览器并进行更多测试?
要打开一个新窗口,您可以试试这个
selenium.openWindow("Url To Open","MyWindow"); selenium.selectWindow("MyWindow"); //Do your operations here selenium.selectWindow(null);//This will take you to default Window
希望这会对你有所帮助。