快速业务通道

使用selenium测试showModalDialog模态对话框 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21

使用selenium测试showModalDialog模态对话框

时间:2011-01-04 javaeye ronghao

Selenium目前没有提供对IE模态对话框(即通过 showModalDialog方法打开的弹出对话框)的处理。原因在于,模态对话框会将父页面的JS挂起,直至对话框处理完毕才会继续执行父页面JS。因为Selenium的底层实现是基于JS的,所以模态对话框会同时将selenium挂起,selenium无法选中模态对话框,直至超时。

但是很多系统往往有大量的模态对话框应用。这些应用分为两类:一类是选人、选业务类型等操作,这些操作的目的是填充父页面相应的字段,不会触发其他操作;另外一类比较特殊,例如工作流的派发,这类操作在模态对话框选人返回值后还会继续执行一系列的操作(即showModalDialog方法的调用被夹在一堆 JS操作中间)。

对于第一种情况,可以在测试代码里建立相应的数据常量,通过直接赋值的方式避免调用showModalDialog方法;对于第二种情况,则只能hack。

在当前的测试用例里,采用以下的hack方法:

典型的模态对话框会在点击一个页面元素后打开(例如button),在第一次点击该页面元素时,我们对showModalDialog方法进行覆盖,改打开模态对话框为window.open打开网页,并将selenium选中该弹出网页:

Java代码

public void clickAndSelectModalDialog(String locator){    clickForModalDialog(locator);     selenium.selectWindow(“name=modal”); } private void clickForModalDialog(String locator){    String overrideShowModalDialogJs=="if(selenium.browserbot.getCurrentWindow().showModalDialog){"; overrideShowModalDialogJs += "selenium.browserbot.getCurrentWindow().showModalDialog = function( sURL, vArguments, sFeatures)"; overrideShowModalDialogJs +="selenium.browserbot.getCurrentWindow().open(sURL, ''modal'', sFeatures);"; overrideShowModalDialogJs += "};}"; //showModalDialog方法进行覆盖 selenium.getEval(overrideShowModalDialogJs); selenium.click(locator); selenium.openWindow(“”,”modal”); selenium.waitForPopUp(“modal”,”15000”); }

接下来就可以在弹出网页里进行操作,获取需要返回给父页面的值,这些值一般是一个数组。获取值后关闭弹出网页并返回父页面。在父页面里再次点击打开模态对话框的元素,对showModalDialog方法进行第二次覆盖,将上面获取的值直接返回。

ê1ó?selenium2aê?showModalDialog?£ì????°?ò(2)

ê±??:2011-01-04 javaeye ronghao

Java′ú??

public??void??acceptModalValue(String??locator,String[]??values){ ???? String??overrideShowModalDialogJs=="if(selenium.browserbot.getCurrentWindow().showModalDialog){"; overrideShowModalDialogJs??+=??"selenium.browserbot.getCurrentWindow().showModalDialog??=??function(??sURL,??vArguments,??sFeatures)"; overrideShowModalDialogJs??+="{??"+generateModalDialogReturnObject(values)+”return??temp”; overrideShowModalDialogJs??+=??"};}"; //showModalDialog·?·¨??DD?2?? selenium.getEval(overrideShowModalDialogJs); selenium.click(locator); } private??void??generateModalDialogReturnObject??(String[]??values){ ???? StringBuffer??returnObject=new??StringBuffer(); ???? returnObject.append(“var??temp=new??Array();”); ???? for(int??i=0;

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号