0
votes
1answer
35 views

Getting attributes values from a node in XML file

I have an XML file and i want to get values of the nodes attributes in it, it works efficiently when the node is usual but is the case of nodes named like something:something it didn't give me back ...
0
votes
2answers
39 views

Something wrong in printing XML node attribute value

I have a problem in printing the value of an attribute existing in a node in a given XML file.I use that code and it compiled correctly but didn't print anything: XPathFactory factory = ...
1
vote
1answer
30 views

How to get the full path of a node in XML file in java?

I have XML file parsed by XPath to get all the parameters in it, and then i want to get the full path to each parameter but my code didn't work for some reason. The Code: ArrayList<String> ...
0
votes
1answer
13 views

Uniting NodeLists in DOM (java)

Here's my code: private NodeList union(NodeList left, NodeList right){ NodeList result=null; try{ DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance(); ...
0
votes
2answers
21 views

I want to use XPath with XML nodes arguments

I want to search an attribute value that exists in an XML file using XPath, for example to search in the nodes values you type "//ex1/ex2/ex3/text()" but what if i want to get the value of a parameter ...
1
vote
1answer
28 views

Using wildcard in WebDriver By.XPATH

Researching on Google I was lead to beleive that you could use * as wildcard in XPATH statements but that seems not to be the case. Therefor could anybody help me find a good XPATH statement for the ...
0
votes
0answers
27 views

Synchronization XML files using XPath in Java

I have got two xml files, here they are: Init Doc: <record xsi:type="tranPurch:VendorBill" xmlns:tranPurch="urn:purchases_2013_1.transactions.webservices.netsuite.com" ...
0
votes
1answer
24 views

JavaCC - XPath parser

I need to create a (very) simple parser of XPath expressions. I'm trying to use JavaCC for that purpose. I'm completely new to JavaCC (although we learned Flex & Bison at school), and so I'm ...
-1
votes
2answers
37 views

Generic XML parser design analysis [closed]

We need to create a generic xml parser and rule engine which reads xmls files and store the data in appropriate tables. Use Case: Suppose we have Afile1.xml coming from A <x> ...
-1
votes
0answers
23 views

How to get xml tag value using xpath

I'm new to Xml manupulation. I have an XML and I have xpath for that. I need to get the value of each Xpath from the xml . Can any one let me know how to do that? I have seen some sample code, which ...
4
votes
2answers
52 views

Is there any Java API to generate xml at runtime with the input xml schema and key value pair of xpath expressions and data

I have the xml schema file at runtime which is changeable. I am getting the java Collection in my code with XPath expressions and the value to be entered in the XML file. With the help of all these ...
1
vote
2answers
35 views

How do I efficiently manage the various conversion tasks?

I am making a video converter as a holiday project. I was planning on using an XML file to represent the pending tasks so the user can save the tasks. here is what it will look like: <?xml ...
1
vote
1answer
57 views

How do I use xpath in Java to find a node value or attribute in an xml and replace it with another value?

Here is my Code so far: // locate the node(s) XPath xpath = XPathFactory.newInstance().newXPath(); NodeList nodes = (NodeList)xpath.evaluate("//root[text()='input[1]']", doc, XPathConstants.NODESET); ...
0
votes
2answers
28 views

Trouble using parent::* axes in selenium web driver

I am trying to use a wildcard to navigate up the DOM in selenium, using something like this... ArrayList<WebElement> list = (ArrayList<WebElement>) ...
0
votes
1answer
25 views

xpath not accepting this expression

hello everyone i have on question for xpath /abcd/nsanity/component_details[@component="ucs"]/command_details[<*configScope inHierarchical="true" cookie="{COOKIE}" dn="org-root" ...
2
votes
1answer
26 views

My XPath expression does not select anything in Java

I was evaluating an XPath expression in Java and it was supposed to return just a single String value in return. However, all I get is a blank value. SSCCE import javax.xml.xpath.*; import ...
1
vote
1answer
32 views

Java evaluate XPath against a org.w3c.dom.Node

Dipping my toe in a little Java at the minute and have a question about XPath. I have a large Xml and I want to use XPath to be able to grab a specific node and then fire further XPath calls against ...
1
vote
2answers
55 views

Getting started with XPath

I am self-studying XPath from Pro XML Development with Java. Just for practice I have constructed a sample XML document and some XPath expressions. Below are a few XPath expressions along with their ...
0
votes
1answer
33 views

Highlight nodes covered by XPath

I want to highlight nodes covered by a given XPath in an HTML page source. I looked to in HtmlUnit, could not find any thing in API. At present, I am thinking of doing it following way: Get XPath ...
-1
votes
0answers
36 views

How do I…XML and XPATH JAVA?

OK - here goes Below is an extract of data from an XML file. I am trying in JAVA to Parse this data to extract all the information for a particular Ingredient or Recipe using XPath. I have all the ...
0
votes
1answer
44 views

Select a node using xpath and jdom

I have an xform document <?xml version="1.0" encoding="UTF-8"?><h:html xmlns:h="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" ...
1
vote
2answers
77 views

Compare structure of two XML files

How can I compare to XML structures, ignoring the tag content? For example, the following responses: <note> <to>Adam</to> <from>Eve</from> </note> And: ...
0
votes
3answers
38 views

I am new to Selenium, using Java(Eclipse), I am having issues figuring out the xpath when using firebug

When I use firebug I get back this as the xpath it gives me back this /html/body/div[5]/div[2]/div/div[7]/div/div[4]/div/div[2]/div/ol/li/div/h3/a I am unclear how to use this in Selenium Webdriver ...
0
votes
1answer
71 views

How to search in jcr:content/@jcr:data using JCR XPath?

I would like to search a JCR repository contained in a CQ 5.6 (AEM) instance for all .jsp files that contain a given string xxx. Being new to JCR's interpretation of XPath (or JCR-SQL2), I'm not quite ...
0
votes
0answers
17 views

MockService SoapUi Pro return response based on condition

I would like to add a condition to my mockservice in SoapUI Pro. At the moment there are two possible responses, returning either true or false. Based on the content of <TAG> ...
1
vote
1answer
71 views

Small issue with deleting duplicates in XML using java

This is sample XML: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <check> <val> <Samsung> <name value="galaxy" /> ...
0
votes
2answers
62 views

Is my XPath syntax correct?

This is my xml: <?xml version="1.0" encoding="UTF-8"?> <check> <val> <Samsung> <name value="galaxy" /> ...
0
votes
4answers
122 views

Xpath and condition

How can i get values of nodes if two nodes are is present under parent node. Eg: I have the following Xml. <?xml version="1.0" encoding="UTF-8"?> <Services ...
3
votes
1answer
45 views

How to distinguish between table elements with identical names? Selenium Java

I need to get to the second table's element. However since the web page contains two tables, I always end up getting an element from the first table. Here is the code: ...
0
votes
2answers
63 views

How to parse an xml and get the content of specific element

My xml String is Got message from Queue ==> <?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003 ...
1
vote
1answer
75 views

SImple XML Framework: XPath matching based on attribute value

Given XML like this: ... <Sport SportId="1"> <Name language="en">Soccer</Name> <Name language="fi">Jalkapallo</Name> ... </Sport> ... ...
1
vote
1answer
32 views

Retrieving an attribute from the current node in a node list

This is my XPath operation: XPathExpression source = xpath.compile("@source/text()"); I'm looping over a node list created by another XPath operation on the main document. So I'm calling source ...
0
votes
3answers
38 views

Why compiling an XPath expression?

I have the following two code segments which does the same thing, except one is compiling the expression and one is just evaluating it. //1st option - compile and run //make the XPath object ...
0
votes
5answers
121 views

Select XPath of a Button?

I have the following HTML Code I need to select the Element that is highlighted. If the menu is highlighted I would like to select the button in the menu not the menu! If the menu is playfield I would ...
1
vote
1answer
36 views

GPathResult ..presence or absence of a node

My GPathResult can have a name node in one of the 3 ways 1) name node is present and has a value ex: John 2) name node exists, but has no value in it. 3) No name node exists at all. In Groovy ...
0
votes
1answer
40 views

Getting data by value

I'm messing around with XPath in Java and I seem to hit a wall. I've got the following XML document <?xml version="1.0" encoding="UTF-8"?> <database> <student> ...
1
vote
1answer
47 views

Parse broken HTML Sites with XPath [duplicate]

I only get questions for python here and the tools that I found are mostly for python, so new question: I need to query some things from a HTML site with XPath. My current code looks like this: URL ...
4
votes
4answers
103 views

How to locate a list element (Selenium)?

I have the following list: <ul> <li> item1 is red </li> <li> item1 is blue </li> <li> item1 is white </li> </ul> I tried the following to print ...
1
vote
1answer
52 views

how to generate xpath expression of google engine

What xpath expression should i use to parse google xhtml result page ?? I am not able to retrieve it using XPathExpression expr = xpath.compile(".//li[@class='g']/div/h3/em/text()"); Urgent help ...
0
votes
2answers
75 views

Parse XML document in java

I want to find the @name from table tag, from given col_alt. Can anybody help me with this. Is it possible with javax.XML.Xpath? If not can you suggest the other way to find this. This is the ...
0
votes
1answer
26 views

Input 2 XML files to produce a combined CSV output in JAVA

I have 2 xml files (one around 50 MB and other one 120K) which can be linked using a common field. I need to read the files, link them on the common field and produce a combined output in CSV. Can ...
2
votes
2answers
89 views

Java based JSON manipulations

Is anyone aware of a JSON-XPath style library that allows data manipulation; update, delete, create, etc... JsonPath.write(json, "$.store.book[*].author", value); I've looked into the following, ...
0
votes
1answer
118 views

XML XPath Parsing in Java

This is the following standard code to parse XML using XPath in Java. I am unable to debug why I am getting null values. I have attached the java file, the xml file and the output. Would appreciate if ...
0
votes
2answers
36 views

Selenium able to verifyElement, unable to access/use those elements

So as the title says, when I use a verifyElement and search by ID, the test does not crash. But when I try to enter data (specifically into a textBox) the test fails. The textbox: ...
0
votes
0answers
55 views

xpath in java without reflection

I have to work a lot with JAXB objects and there is an annoying thing when getting a value. Let's suppose I have got the next XML: ... <a> <b> <c>1</c> </b> ...
0
votes
3answers
47 views

Get attribute where subtag has attribute x

Consider this XML File structure ... <sometag attr="foobar"> <subtag> <subsubtag someattr="foo" /> <subsubtag someattr="bla" /> <subsubtag ...
-1
votes
2answers
93 views

XPath expression, two Strings in one node

I downloaded html form, clean it with htmlCleaner. Originally it looked like this (now it's well formed but I don't know simple way how to show it, I hope, this is sufficient): ... <form ...
0
votes
1answer
44 views

Return type of node itself in xpath

Having the following xml <xml> <property href="abc">b</property> <element attr="def">k</element> </xml> How can I make the following xpath return literally ...
0
votes
0answers
32 views

Not able to select node for XML using xpath

I am not able to select any node using xpath in the following XML. I have used online xpath parser to get node /PartyHierarchyView//HQPDBID but i am not getting the node.Any pointer will be very ...
0
votes
0answers
172 views

How to parse a HTML File into Java Objects (Selenium, XPATH, HtmlUnit, …)

After some crawling tests I have a lot of HTML Sites as Textfiles on my harddisk (They are comming from the same site and having almost the same Structure). Now I need to parse this Files into Java ...

1 2 3 4 5 16