2012-11-30 135 views

回答

1

为了打开一个新窗口,你可以试试这个

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

//Do your operations here 

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

希望这会帮助你。

相关问题