博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium学习笔记之外部化相关测试数据---xml
阅读量:6641 次
发布时间:2019-06-25

本文共 2553 字,大约阅读时间需要 8 分钟。

我们也可以用xml来定义一个信息更为丰富的UIMap.xml文件,比如,额外还添加控件所属的页,控件的类型,然后解析构建一个XMLParser类来读取相应的值。

1 
2
3
4
5
6 7
8
9
10

相应的解析xml的代码:

1     public static String getLocator(String locatorID){ 2         InputStream ins=Thread.currentThread().getContextClassLoader() 3             .getResourceAsStream(FileConstants.XMLFILE_NAME); 4         if(ins==null){ 5             System.out.println("Missing UIMap.xml file."); 6             return null; 7         } 8          9         DocumentBuilderFactory fac=DocumentBuilderFactory.newInstance();10         DocumentBuilder builder=null;11         try {12             builder = fac.newDocumentBuilder();13         } catch (ParserConfigurationException pce) {14             System.out.println("Failing to new DocumentBuilder for runtime exception.");15             throw new RuntimeException(pce);16         }17         18         Document xmlDoc=null;19         try {20             xmlDoc = builder.parse(ins);21         } catch (SAXException se) {22             System.out.println("Failing to parse xml file for runtime exception.");23             throw new RuntimeException(se);24         } catch (IOException ie) {25             System.out.println("Failing to parse xml file for runtime exception.");26             throw new RuntimeException(ie);27         }28         29         XPathFactory pathFac=XPathFactory.newInstance();30         XPath xpath = pathFac.newXPath();31         32         XPathExpression exp=null;33         try {34             exp = xpath.compile("UIMap/Object[@ID='"+locatorID+"']/Attributes");35         } catch (XPathExpressionException e) {36             System.out.println("Failing to get locator for :"+locatorID);    37         }38         Node node=null;39         try {40             node = (Node)exp.evaluate(xmlDoc, XPathConstants.NODE);41         } catch (XPathExpressionException e) {42             43             e.printStackTrace();44         }finally{45             try{46                 if(ins!=null){47                     ins.close();48                 }49             }catch(Exception ex){50                 System.out.println("Failing to load UIMap.xml for runtime exception.");51                 throw new RuntimeException(ex);52             }53         }54         55         return node.getAttributes().getNamedItem("Locator").getNodeValue();56     }

测试代码:

1 selenium.type(UIMapParser.getLocator("UserName"), "seleniumtest");2 selenium.type(UIMapParser.getLocator("Password"), "seleniumtest");

 

注:转载需注明出处及作者。

      

你可能感兴趣的文章
2012-06-25 基本调整数据库结构方法
查看>>
用Markdown格式写一份前端简历
查看>>
第二次作业
查看>>
Windows API编程(一)完整的示范程序
查看>>
JAVA EE:第一个例子(登录)
查看>>
前端Js框架汇总
查看>>
LINUX 配置IP
查看>>
常用的CSS3 -webkit-前缀
查看>>
oo第四次博客作业
查看>>
获取JSON格式的字符串各个属性对应的值
查看>>
入坑博客园
查看>>
寻址和字节顺序
查看>>
VMware 虚拟化编程(13) — VMware 虚拟机的备份方案设计
查看>>
Linux常用命令整理
查看>>
数据的间距问题(重载+函数模板)
查看>>
利用Python实现从百度下载图片到本地磁盘
查看>>
ubuntu18.04安装mac主题
查看>>
Log4j的简单使用
查看>>
大数据实践-数据同步篇tungsten-relicator(mysql->mongo)
查看>>
定时任务发展史(一)
查看>>