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)

1
vote
1answer
28 views

xpath: check if element is within other element

I have quite a large XML structure that in its simplest form looks kinda like this: <document> <body> <section> <p>Some text</p> ...
2
votes
3answers
50 views

How To Create XPath for XML?

I have one Xml file in which i want to make filter based on XPath. I tried lot of examples none of them are helping No doubt I am doing some mistake. I am new in XPath please help me to find the ...
1
vote
2answers
39 views

how to locate cursors randomly in map

a lot of cursors in the map every time you refresh the map you will get another different cursors with different IDs so i can't use the IDs to test random cursors i want to click at any cursor, ...
-6
votes
1answer
41 views

Need a Xpath for following webelement [closed]

I need a Xpath for following HTML code. <a herf="option1" class="bodytext0">I need new car</a> Thank you.
1
vote
2answers
55 views

How can I summarize nodes using calculation data from other nodes

Using XSLT 1.0, how can I summarize subnodes under a given node while modifiyng the content with data from another set of nodes in an elegant way? Assume I have this xml: <Root> ...
0
votes
1answer
35 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 ...
0
votes
1answer
32 views

SelectSingleNode to Evaluate LowerCase NodeSet value

I am trying to get the value of an xpath expression in lower case using SelectSingleNode, is there an Xpath that can give me the lower case value of an evaluated xpath expression? It is possible by ...
2
votes
1answer
23 views

Finding attribute value of some unspecified ancestor using Xpath

I would like to find an XPath expression to select nodes, whose attribute 'a' value exists and is concatenation of their attribute 'b' and value of 'a' of the FIRST ancestor, for which attribute 'a' ...
1
vote
1answer
74 views

Convert xPath to JSoup query

Does anyone know of an xPath to JSoup convertor? I get the following xPath from Chrome: //*[@id="docs"]/div[1]/h4/a and would like to change it into a Jsoup query. The path contains an href I'm ...
0
votes
1answer
23 views

Xpath get multiple node-names

i am using xpath to get some node names from a xhtml / xml file. I currently have this xpath: /xhtml:html/xhtml:head/xforms:model/xforms:instance/form/*[starts-with(local-name(), 'section')] That ...
1
vote
0answers
39 views

Jath.js Xml parsing IE Error

I'm using jath.js to parse XML with Xpath selectors. But in IE Version 10/9, I am getting the below error: Object doesn't support property or method setProperty Below is the jath source ...
0
votes
1answer
35 views

Exact XPATH location within Java

I'm trying to return exact XPATH query expressions so I can datamine a site with rapidminer. I need a query to isolate each line individually: Wed 7/11/2012 TROLL 9999999999999 ...
1
vote
1answer
39 views

XPath Select node where exists child with given attribute value

I'm trying to create az xpath, where I want to get a node, in which there exists a child node which has an attribute. My problem is that the only difference in this structure is the child attribute. ...
0
votes
1answer
22 views

Webharvest If and null test

I'm trying to make my program check the return of an xpath expression and if it is null it should try a different one, how do I do this? I have tried all the examples on the website and the blank ...
0
votes
2answers
23 views

xpath and html value (javascript)

Let's say I want to check if "xpath html value" is equal to some text in a website. Like: html/body/div/div[7]/table/tbody/tr[2]/td value = "some text" How do I get it?
0
votes
1answer
89 views

How to use the wicked-good-xpath in Selenium WebDriver with C#?

I found the wicked-good-xpath that can work with Selenium. It could find XPath faster. But I don't know how to use it in Selenium WebDriver with C#? Could you give me some sample code? Thanks in ...
2
votes
2answers
79 views

XSL 2.0: count total number of unique values

Here is my xml: <?xml version='1.0' encoding='UTF-8'?> <wd:Report_Data xmlns:wd="urn:com.workday.report/CR-INT034-ADP-Garnishment_Disbursements_File-Outbound2"> <wd:Report_Entry> ...
1
vote
3answers
45 views

Why does this xpath work but the css selection doesn't [locator not found] for a UL

I'm working on switching from xpath to css for my selectors where possible. This worked in xpath: //ul[contains(@id,'district-switcher')] but what I thought was the equivalent in css: ...
0
votes
2answers
43 views

XML Xpath Usage

ornek.xml here : <?xml version="1.0" encoding="UTF-8"?> <library> <book onay="e" katid="31" dil="tr"> <kitapadi>Dear Lovely</kitapadi> ...
1
vote
1answer
34 views

read attribute value within a attribute using XPathNavigator

This is how my xPathNavigator looks like: <mux:Column Name="id" DisplayMemberBinding="{Binding Path=Id, Mode=OneWay}" Width="100" DisplayName="Header_Id" Property="Id" DataType="s:String" ...
0
votes
1answer
24 views

how to change this xpath expression to css for selenium

I've been using xpath a lot recently. Now I'm going to start using css a lot, based on advice I've received. How would I take an xpath expression like //tr[td[contains(.,'6 Day')]][1]/td[8]/a@href ...
0
votes
3answers
58 views

how do I combine xml nodes with certain conditions using xslt?

I have two XML documents I want to combine. forSale.xml: <forSale> <game> <cover>me3_cover.jpg</cover> <title>Mass Effect 3</title> ...
-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
42 views

Query DOMdocument with a result [closed]

I have a HTML file containing 2 divs wich have a specific class called 'rss-data'. With DOMdocument and DomXpath I'm trying to browse in these elements, using the following code: // Create ...
0
votes
1answer
49 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" ...
0
votes
1answer
21 views

XPath in Python - How to Find All Elements with a Specified SubElement/SubElement.text Pair

I'm new to XML and XPath, which I'm tackling via Python. I know how to write a Python script using a simple XPath expression that does what I'm looking for, but I get the feeling that it could be slow ...
1
vote
1answer
59 views

Python/lxml web scraping: dealing with blank entries

I'm using Python and lxml to scrape data on ETFs and mutual funds from the Bloomberg web site. An example of a page I'm trying to scrape data from is ...
2
votes
2answers
37 views

What's the correct Xpath substring for selecting date in a phrase?

I need to use Xpath to select the date from the following string: 44kb - Mr John Doe - 1/1/13 I don't believe you can select the third iteration of the '-' for something like ...
0
votes
2answers
29 views

Why does this XPath expression not return the correct value in xmlstarlet?

I'm trying to extract the contents of the 'coordinates' node in this KML file using xmlstarlet. The KML file validates fine using xmlstarlet itself. I've whittled it down to a small test file ...
0
votes
1answer
27 views

xsl:for-each-group positional grouping flat xml to hierarchical

I have a flat xml file that needs to be converted to hierarchical. I used the nested grouping idea from here xsl:for-each-group help needed. It's working for the most part except for a couple of ...
-1
votes
1answer
25 views

xsl:for-each-group positional grouping

I have a flat xml file that needs to be converted to hierarchical. I used the nested grouping idea from here xsl:for-each-group help needed. It's working for the most part except for a couple of ...
0
votes
2answers
21 views

XPath format required on namespace node

Can someone please show me the XPath format i should use to retrieve the 2nd txnDetail node's billAmount ? I am expecting value 10.00 but i have issues with the namespace and "a:" and XPath fails to ...
1
vote
1answer
23 views

Get all children of parent identified by a specific atribute value using xpath

Is there a way you can get all get all children of a parent with a specific attribute value using xpath, for instance if i wanted to get all the children of the first <b> below i could write ...
0
votes
1answer
28 views

How to create an attribute node and attach it to output node..?

I'm not able to figure out a way to attach an attribute node to output node in below scenario.. input xml: <record> <user> <field name="LastName">user33</field> ...
0
votes
1answer
33 views

Wildcards in XPath Predicate

I am trying to write an xpath expression that would evaluate to a specific substring within ItemInfo <Catalog> <List> <Item> <ItemInfo> This ...
-1
votes
1answer
37 views

How to find a more complex specific node by ancestor, parent and child nodes

This is a stripped down version of my XML file simple.xml. <Genealogy> <grandParent> <name>bob</name> <surname>Carter</surname> <Parent> ...
1
vote
2answers
33 views

Maximum number of distinct subelements per node

Using XSLT 1.0, how do I obtain the maximum number of distinct <info> elements that are children of the same <container> element in a structure like the following (if at all possible)? ...
1
vote
0answers
44 views

Wicked Good X-Path, Internet Explorer (IE 9) & Namespaces

I recently tried to include wgxpath for patching IE 9's lack of proper X-Path support but I'm getting a weird error message while trying to use namespaces («Error: Bad token: :»). Have somebody tried ...
-1
votes
0answers
40 views

XQuery XPath expression not matching

I am new to coding and not sure what to use in "nextxpath" (see below) to move to next page and collect all the info. The code does collect info from first page but doesn't move to next. Javascript ...
-1
votes
1answer
30 views

Limiting list returned by xpath

I am trying to use xpath in WebHarvest and I am able to receive a large list of data, however I only need the first 5 strings returned. <var-def name="googleProducts"> <html-to-xml> ...
0
votes
1answer
46 views

php and xpath - loop through child elements of particular element

I would like to loop through each book_list in the following xml file and for each book_list loop through each book for that book_list. <inventory> <book_list> <book> ...
0
votes
1answer
96 views

PHP simplexml xpath search for value in an ELEMENT containing tab delimited text?

How to do a PHP simplexml xpath search for text value in a tab delimited ELEMENT and returning text from that same element at a different offset from where the search text offset? Lets say I wish to ...
1
vote
1answer
30 views

Can not get Xpath to fetch a nodeList

libxml_use_internal_errors(true); $url = 'http://thepiratebay.is/browse/200/0/7'; $html = file_get_contents($url); $dom = new \DOMDocument(); $dom->loadHTML($html); $x = new \DOMXPath($dom); ...
0
votes
1answer
23 views

passing evaluated xpath to extension

I'm working with lxml python lib. Assuming we have product xml such as: <product id='123' /> And want to apply xsl template: <xsl:template match="product"> <ssi:include ...
0
votes
1answer
57 views

XMLTable - xpath 'empty()' alternative in Oracle 10g

In Oracle 11, I have a query like this: SELECT XML_TABLE.* FROM XML_DATA, XMLTABLE('//root' PASSING XML_DATA.XML COLUMNS NAME VARCHAR2 (50) PATH '//root/name/text()', ...
0
votes
1answer
31 views

xpath implementation for dynamic <a> or <ul> or <li> tags

I am working on a project which is doing a QA for a huge website with a high traffic. My jobs is to identify some way out so that the future implementations/changes in the current webpages do not ...
0
votes
0answers
37 views

X-Path expression to pull data from a table row

I am new to Xpath. I tried to write an xpath expression which returns all the valid elements in a above table row (Marked as 'Required'). XPath Used: .//*[@id='reportListItemID0']/td[not(@width) and ...
0
votes
0answers
13 views

ORA-30951: Element or attribute at Xpath exceeds maximum length

I am getting the error when trying to run this test block, this is code is to simulate the production error we are getting...The XML is at the bottom.. Please Help DECLARE g_xdoc XMLTYPE; ...
0
votes
1answer
34 views

Get Element Tree with Python lxml

I have the following xml record within a larger xml file: <Employee> <id>999</id> <fname>Tim</fname> <lname>Boskin</lname> </Employee> I am ...
0
votes
1answer
39 views

WebHarvest XML not well formed

I am using WebHarvest to try to receive data from Woot.com and I'm getting a few different errors. I am able to get the website with the first process, but when I try to test xpath inside of the ...

1 3 4 5 6 7 171