Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Improvement plan for project automation test architecture-remove action instructions

2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Because we define multiple action instructions in test_suite.xml, for example, they instruct us to Engine to operate on the final data, these action instructions are not data, so they are not included in our final data result set, so we have to remove them. So we use the following code to do the removal:

Public class XMLManipulator {public static String removeModifyConfFromXML (String xmlString) throws Exception {Document doc = null; doc = DocumentHelper.parseText (xmlString); / / remove the from the target xml List addPart = doc.selectNodes ("/ test_suite/test_case/add_elements"); for (Node node: addPart) {node.getParent () .remove (node) } / / remove the from the target xml List updatePart = doc.selectNodes ("/ test_suite/test_case/update_elements"); for (Node node: updatePart) {node.getParent () .remove (node) } / / remove the from the target xml List removePart = doc.selectNodes ("/ test_suite/test_case/remove_elements"); for (Node node: removePart) {node.getParent () .remove (node);} / / find document again return doc.asXML () }..}

The final xml file does not contain code snippets for these action instructions.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report