The primary purpose of XPath is to address parts of an XML document. It also provides basic facilities for manipulation of strings, numbers and booleans. XPath uses a compact, non-XML syntax. XPath operates on the abstract, logical structure of an XML document, rather than its surface syntax.

learn more… | top users | synonyms (1)

0
votes
2answers
15 views

C# Parsing XML node with XPathNavigator

I have this sample XML saved in books.xml: <?xml version="1.0" encoding="utf-8" ?> <catalog> <book id="bk101"> <author>Gambardella, Matthew</author> ...
-3
votes
1answer
37 views

Parsing Pirate Bay using HTMLAgilityPack [closed]

I want to know how can I parse this respective website http://thepiratebay.sx/ using HTMLAgilityPack in C# and XPath? HtmlDocument doc = new HtmlDocument(); doc.Load("http://thepiratebay.sx/"); ...
1
vote
0answers
13 views

eXist-db XQuery Sandbox: Problems in XPath expressions with doc()

I am using eXist-db Version: 1.4.1 (SVN Revision: 15155, Build: 20110815) and I am having problems in XQuery queries with XPath expressions when they involve names of elements or attributes, and XML ...
0
votes
2answers
32 views

XPath expression to exclude some child nodes

I have this source XML tree: <?xml version="1.0" encoding="UTF-8"?> <root> <foo> <bar> <baz> <item> <methods> ...
1
vote
1answer
19 views

Saxon CE and XQuery? Documentation indicates no XQuery, Examples otherwise?

Saxon CE, a javascript implementation of the popular XSLT, has documentation that indicates Saxon-CE has had XQuery support removed. However, an example in the Saxon-CE documentation has was looks ...
0
votes
1answer
23 views

how to extract a list of label value with scrapy when html tag are missing

I am currently processing a document with <b> label1 </b> value1 <br> <b> label2 </b> value2 <br> .... I can't figure out a clean approach to xpath with scrapy. ...
-4
votes
0answers
41 views

Get the first image inside a div and a paragraph [closed]

I've got some external content that is like this <div class="text"> <p>Hello</p> <p><img src="blaaa"/></p> </div> There may be more paragraphs before/after ...
0
votes
5answers
27 views

Get “breadcrumbs” for elements matched by an Xpath expression (in PHP)

I have an XML structure in which certain elements have been marked by attributes, like so: <a> <b1> <c1 special="yes" /> </b2> <b2> <c2 /> ...
1
vote
1answer
23 views

XPath to get link text inside span with newline characters

I'm trying to extract with Javascript the name of an href inside a span of a flickr photo page, the source looks like: <span class="photo-name-line-1"> <a ...
1
vote
1answer
20 views

Using selenium to click a button that has a unicode character as its label

As you can imagine, I have no access to the web page code. There is a drop-down button that I need to click on and when I'm looking at the source, the only unique feature of that button is that it's ...
1
vote
1answer
33 views

Structural requirements when using “except” in XPATH/XSL

I am having trouble when using "except" in xpath. Here is the chunk of problem code. (I tried to simplify as much as possible without obscuring the whole problem).: <!--First, create a variable ...
2
votes
1answer
18 views

pulling multiple values from python ElementTree with lxml and xpath

I am almost certainly doing this horribly wrong, and the cause of my problem is my own ignorance, but reading python docs and examples isn't helping. I am web-scraping. The pages I am scraping have ...
2
votes
1answer
27 views

Select xpath values as separate rows in Oracle SQL

I need to select some values from an XML stored in a CLOB column in an Oracle database. The best I could come up with is the following: select extract(xmltype(COLUMN), ...
0
votes
1answer
11 views

Retreiving the element position using xpath for each and every element with in the same parent

I have multiple table elements with in a same chapter. Also i have multiple chapters . I want to name each table like (Table : chapter# . Table#). The xml file looks like this <bookmap> ...
1
vote
1answer
38 views

Select whitespace node with XPath in C#

I have the following code var textReader = new StringReader("<root> </root>); var settings = new XmlReaderSettings(); settings.IgnoreWhitespace = false; var reader = ...
1
vote
2answers
29 views

How to find 2nd td in html using xpath

I have 2 occourances of same td in 2 different tables. I am able to get the value 'Yes' for the 1st one using this: //h:td[1][*[contains(.,'Loudspeaker')]]/../h:td[last()]/text() but not getting ...
2
votes
1answer
17 views

Get element's xpath in javascript

I am developing in javascript and I would need to get the xpath of the element clicked. I know that in order to get the id we can do : element.onclick = function(event) { var target_id = ...
0
votes
1answer
52 views

Not able to click a button using WebDriver in Java

I need to click on the save button after filling some text fields. The problem is the xpath keeps on changing every time I reload the page, the id is dynamic. Please help me in clicking this button in ...
1
vote
0answers
39 views

Parsing very large xml file (18.5 GB) in python using iterparse in lxml with limited RAM. Is there a way? [duplicate]

I am trying to parse a large XML data dump (18.5 GB) with limited RAM (~6 GB). We only want to grab a few tags from each object and make a hashtable with those tags. We are currently using iterparse ...
0
votes
1answer
43 views

HTML::TreeBuilder::XPath rejects <link> inside body tag

I'm using HTML::TreeBuilder::XPath to parse a complex HTML doc and then edit it, before writing it back to disk. The problem I'm running into is that it rejects <link...> tags inside the ...
0
votes
0answers
9 views

Test dropzone js upload with rails, cucumber, capybara?

I have a rails project using cucumber and capybara for tests. I have a file upload page using dropzone js. My uploads work great using the dialog box or drag and drop. Testing is another matter. I ...
0
votes
0answers
14 views

Yahoo pipe using XPath Fetch Page showing null

I'm building a Yahoo Pipe using the XPath Fetch Page module. You can see my pipe here. I can see the right information shown in the Debugger, showing 13 items, but when I run my pipe I'm getting the ...
0
votes
1answer
25 views

XSLT 2.0: Filtering through nodes / text with analyze-string but needing to also grab XML tags

I'm working through my first major XSLT project, and am a bit of a novice, so please be patient with my ignorance. Our group is working on a transform of existing XMLs to an entirely different ...
0
votes
1answer
19 views

select xmlns attribute with xmlstarlet

In xmlstarlet how can I select the value of the xmlns attribute? I tried with xml sel -t -v //@xmlns input.xml but didn't get any result. On the other hand xml sel -t -v //@id input.xml prints ...
0
votes
1answer
29 views

Getting elements with default namespace (no namespace prefix) using XPath

In this SOAP XML file, how can I get the 7 on a using a XPath query? <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" ...
0
votes
1answer
28 views

XML query search tool

I am looking for a search tool/engine which basically search through folders of XML files and return results. It should support xpath xquery in addition to basic string search. It should support ...
0
votes
2answers
29 views

Java: Compare XPath structure

I am writing some functional tests that should compare the XML structure of two XML documents. This means that the tag order and naming is improtant, while the tag content is irrelevant. For example, ...
2
votes
2answers
48 views

Parse XML Simple String using Java XPath

I have XML String like this <resp><status>good</status><msg>hi</msg></resp> I follow this help Simplest way to query XML in Java MyCode: public static void ...
0
votes
1answer
15 views

get data in xml use id

I have xml like this: <section data1="DATA1"> <data2>DATA2</data2> <info> <id value ="id"> </info> </section> every section has only one ...
-1
votes
0answers
23 views

how to get xml specific contains as a string using php? [closed]

i am try to load contains from xml file:- xml file:- <teams> <team_main value='Aus'> <team_under value="under_18"> <team_player1 value="Jack" /> ...
0
votes
0answers
17 views

xpath value not rendering?

I'm sure I'm missing something obvious here... why would this xpath not return a value: /html/body/div[2]/div[2]/div[2]/div[2]/div/div[4]/form/table/tbody/tr[3]/td[2] I have used firebug to copy ...
1
vote
3answers
56 views

Get specific values from Xml

I don't how to extract the values from XML document, and am looking for some help as I'm new to C# I am using XmlDocument and then XmlNodeList for fetching the particular XML document Here is my ...
-1
votes
0answers
48 views

Unable to find an Xpath of an element using webdriver and xpath

I need to click on the textbox next to username . Am unable to find the Xpath for this using webdriver...can I get some help? here is the html snippet: <div id="form-1013-body" ...
-2
votes
0answers
28 views

Using XPathFunction in Java

I'm trying to use XPathFunction in my code. I have written the function and the resolver, but there is some part with the namespace that I don't know how to implement. The 3 code examples I have ...
2
votes
1answer
24 views

XSL: Find text not currently in elements and wrap?

Given the following fragment: <recipe> get a bowl <ingredient>flour</ingredient> <ingredient>milk</ingredient> mix it all together! </recipe> How can I ...
0
votes
1answer
24 views

Ruby: Make a selection from a drop-down list box

I am writing scripts in Ruby that supports Capybara. I will have to select a value from a dropdown list box and I am using "xpath" to find the element and make the selection. The code is given below: ...
0
votes
3answers
64 views

Xpath search for duplicate

I have the following xml: <log> <logentry revision="11956"> <author>avijendran</author> <date>2013-05-20T10:25:19.678089Z</date> ...
0
votes
1answer
21 views

XPath Axes - Replace 'text' value of child nodes under a parent with parent node's attribute value

I'm trying to apply the XPath to the XML file with structure below: XPath: /root/tour/round/event/parent::round/@name The expected output is: final semifinal semifinal quarterfinal quarterfinal ...
0
votes
2answers
32 views

xml - xpath select third node after a certain node

I have an xml file which looks like this: <item id="1991901" > <property name="image"> <property> <property name="image_realtyimagetype_id"> ...
0
votes
1answer
22 views

Multiple filters using xPath

I have some XML in the following format <root> <item> <created>2013-05-21</created> <name>Item 1</name> <attributes> <stock> ...
1
vote
1answer
28 views

exide not show any results on screen

I write this query in exist-db (Exide): doc("/db/libros/prueba.xhtml")/html/body/p/a/@href Find two results: Found 2 in 0.003s But the screen does not show any Input document is: <html> ...
-1
votes
0answers
50 views

separate attribute value if no more same element left

this is part of xml:- <products> <product_id value="1"> <tab_id value="351" /> </product_id> <product_id value="2"> <tab_id value="352" /> ...
0
votes
0answers
44 views

get attribute value separate like element wise [duplicate]

I have the following xml file:- <products> <product_id value="1"> <tab_id value="351"> <tab_name value="test1"/> <region_timezone value="1"/> ...
0
votes
1answer
11 views

how to evaluate a xpath without considing the empty Text node using JDom2

For an xml segment: <tr> <td> Price: </td> <td> <span> <b> $11.85 </b> </span> </td> ...
1
vote
2answers
34 views

What XPath to select only non-taged text inside div. Selenium. Java

I want to select only the text "only this text" from the snipet below using XPath (in Java) but that text is random and I don't know what is written there. <div class="A"> <input ...
0
votes
0answers
13 views

How do you get a ns prefix map from CXF SOAP request?

I'm working with requirements for a SOAP endpoint that takes in an XML object that includes an XPath query. This query is namespace dependent. The Xpath string will have namespace prefixes that will ...
2
votes
1answer
29 views

How to make Perl XML::XPath allow queries without namespace prefixes?

I'm trying to use XML::XPath to extract content from XML documents. The documents are specified with namespaces, but I want to use XPath expressions without namespaces. As far as I can tell, I had ...
0
votes
1answer
33 views

Need help on a T-SQL XPath query

I'm hoping somebody can help me solve a syntax problem with a TSQL xpath query. Given the following xml: <emails> <email></email> <email></email> ...
2
votes
2answers
39 views

how to convert xslt version 2.0 to version 1.0

i am using xslt document which uses xpath version 2 functions. I only have xalan 2.6 jar which has xslt 1.0 processor, its a constraint i cannot change it..please help me if there are any tools that ...
-1
votes
1answer
29 views

DOM vs XPath - Difference? [closed]

I'm curious of what the pros and cons are of these two, DOM and XPath. What does XPath provide that DOM does not, and the other way around? I'm not looking for performance or anything like that, just ...

1 2 3 4 5 172