Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4625720
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T03:18:48+00:00 2026-05-22T03:18:48+00:00

How to parse xml file in my junit selenium test case using eclipse, I

  • 0

How to parse xml file in my junit selenium test case using eclipse, I want to grab data from this file and insert it in forms using my selenium RC test case.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T03:18:49+00:00Added an answer on May 22, 2026 at 3:18 am

    Take a look at dom4j, and this is my approach. I implemented a selenium + Junit framework and all the data inputs are in XML format. So I setup the structure of the xml input. So If you are going on this direction I would advise you to identify what xml format/structure.

    Example:

    <seleniumtest>
    
        <!-- Selenium Test Parameters -->
    
        <Parameter name="inputValue">
            <value>myvalue</value>
        </Parameter>     
    
        <Parameter name="mypassword">
            <value>password</value>
        </Parameter>
    
        <Parameter name="users">
            <value>user1</value>
            <value>user2</value>       
        </Parameter>
    
    </seleniumtest>
    

    One you finalize on the structure you can start writing a parse and expose the data into rest of the test or just for a one test.

    Here is the start for your xml parser, Create a class and have the constructor read in the xml file,

    public class XMLFileParser {
    
        private static final Logger log = Logger.getLogger(XMLFileParser.class.getName());
    
        private Document document;
    
        /**
         * Method will construct a Document Object from the given InputStream
         * @param readIn The input stream to read the document.
         */
        public XMLFileParser(InputStream readIn) {
            SAXReader reader = new SAXReader();
            try {
                document = reader.read(readIn);
            }catch (DocumentException ex) {
                log.error("Error when attempting to parse input data file", ex);
            }
        }
    
        /**
         * Write a method to iterate over the nodes to actually parse the xml file. 
         */
        public HashMap<String, Object> parseInput(HashMap<String, Object> params) { 
            Element rootElement = document.getRootElement();
            for(Iterator iter = rootElement.elementIterator("Parameter"); iter.hasNext();) {
                    // This where you should write your parse logic,  
                 }
    
            return params;
        }
    

    It doesn’t have to be a hashmap but thats what I wanted to do you can make this method to return anything that you wish based on your framework.

    Have Fun;

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.