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
1answer
29 views

xml Path Parser does not recognise the part of xpath

I need to resolve xpath where I have '[' the expression that follows. <screenDef:InputScreenField Title="MyTitle" ...
0
votes
1answer
18 views

xpath : Get a button by type and text

I've a web page with following template : <body> ... <a type="submit"....> "A1" </a> <a type="submit"....> "A2" </a> <a ...
0
votes
1answer
19 views

How to select Nth element in XPath with multilevel nesting

We can use :position() in xpath to retreive nth element in simple HTML block like this: <ul> <li>first</li> <li>second</li> <li>third</li> </ul> We ...
2
votes
0answers
35 views

Python: xpath.find() won't find new elements if they were added without namespace

Today I stumbled upon a peculiar behaviour of the xml.dom and xpath modules and it took me a while to figure out it had to do with XML namespaces: from xml.dom import minidom import xpath zooXml = ...
0
votes
1answer
29 views

How to check IDREFS length in xPath

I have the next DTD definition <!ELEMENT testNode EMPTY> <!ATTLIST testNode listOfNodes IDREFS #REQUIRED bestNode IDREF #REQUIRED > when I get ...
0
votes
1answer
23 views

Selecting limited range of node by using comment node as limiter

I was trying to select nodes between two comment <ul> <!-- fromHere --> <option>a</option> <option>a</option> <option>a</option> ...
1
vote
3answers
86 views

Selenium - how to get element and it's subelements text

Short version: I can get the chat message (using selenium's By.xpath in java) but I want to include smiles into proper places. Longer version: Hello, I've been tackling this interesting issue where I ...
-5
votes
0answers
42 views

Creating XSL from a excel file [closed]

We create lot of mapping documents in excel sheet where we mention mapping between 2 XSDs. For example a incoming request XML has to be converted into a new different format before going to backend. ...
0
votes
2answers
33 views

Use xpath or xquery to show text in title attribute

I'd like to use xquery (I believe) to output the text from the title attribute of an html element. Example: <div class="rating" title="1.0 stars">...</div> I can use xpath to select ...
1
vote
1answer
44 views

string concatenate multiple attribute values in xpath in c#

Is there is an xpath expression that can be used to concatenate multiple attribute values and that be used with XPathNavigator.Evaluate <root> <node class="string"></node> ...
0
votes
1answer
23 views

XPath function that returns whole subtree under a node

Suppose part of my document is <div> <b>Hello,</b> world! </div> <div> <span> <b>This</b> is a <b>wonderful</b> day! ...
0
votes
1answer
34 views

How do I find a the value of a td in a specific tr

I am have a rails app that I am writing cucumber test for. I am trying to get a number out of specific row so I can assert against it. I have a table that looks like this: <table class="table ...
0
votes
1answer
16 views

XSLT/ Xpath how to accumulate / get total of a node based on a condition in another node

I need to get two totals CreditCardTotal and CashTotal and have to display them in another tag AccountCost, as shown below. Basically, I need get the expense amount and check to see if it is a credit ...
1
vote
2answers
75 views

How do I create a unique array with Nokogiri?

I have code that looks like: file = Nokogiri::XML(File.open('file.xml')) test = file.xpath("//title") #all <title> elements in xml file Then when I try: puts test.uniq I get the following ...
1
vote
1answer
35 views

HtmlUnitDriver is unable to locate a node

I cannot get HtmlUnitDriver to find elements on a page I am trying to access. WebDriver on the other hand works fine. Both are using the same method. Here is my code: import java.util.logging.*; ...
0
votes
1answer
22 views

I can't get xmerl_xpath to work for XPath expressions involving namespaces

I can't get xmlerl_xpath to find nodes with namespaces. Given an XML document, e.g. <ostrich:Zebra xmlns:ostrich=\"some-url\"/> and an XPath expression, e.g. /x:Zebra and a namespace map, ...
0
votes
0answers
26 views

GUI XSLT Generator

I'm looking for a GUI XSLT generator, and I know Oxygen and XMLSpy have XSLT generators, and I have evaluated them, but they don't meet my needs (Or they do, and I just haven't found how to get them ...
0
votes
1answer
27 views

Xslt - How do you check for a grandchild node with a certain path name. (xpath 1.0)

What I want to do is given an element as context, I want to determine if it has a child with a given name and determine if that child has a node with a given name so I can do operations with it. It is ...
5
votes
0answers
51 views

cloneNode inconsistent with namespaces - cross environments?

When attempting to clone a DOMNode object (DOMNode::cloneNode) I am experiencing inconsistencies running it across different environments, specifically with the clone failing to copy the namespace ...
0
votes
0answers
30 views

Fetch node value containing escape characters using xpath

I am using Java XML API to fetch a node value for a given XPath. Here is the code I am using to fetch the node value for a given XPath final XPathFactory factory = XPathFactory.newInstance(); ...
2
votes
2answers
43 views

Get elements by size

I have to get all the elements in an HTML page having size 300x250 (just the parent though. So if a DIV is 300x250 and has an image inside of the same dimension I shall get just the div). I can't use ...
-3
votes
0answers
25 views

How to find xpath for all element presence on webpage using JAVA? [closed]

Requirement is to get the list of all object Name, object Type and object path presence on any web page and create in list form.
0
votes
1answer
26 views

Select an XML attribtute of parent node with condition for child node

I have a XMLType column in database from which I have a condition to check for a child node text and fetch the Parent node's attribute. In the XML i need the quantity (qty="3") to be fetched when i ...
0
votes
2answers
64 views

Selenium WebDriver findElement(By.xpath()) not working for me

I've been through the xpath tutorials and checked many other posts, hence I'm not sure what I'm missing. I'm simply trying to find the following element by xpath. <input class="t-TextBox" ...
1
vote
2answers
35 views

xpath parent attribute of selection

Syntax of the xml document: <x name="GET-THIS"> <y> <z>Z</z> <z>Z__2</z> <z>Z__3</z> </y> </x> I'm able to get all z ...
0
votes
1answer
29 views

Using XPath and VB.NET to parse XML containing namespsaces

There are several related questions, but none which provide the guidance I need. Assuming the following XML: <?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?> ...
1
vote
1answer
22 views

CRLF causing problems in finding an element via xpath

I am working on a test case and need to find text within a table. The only thing to key off of is the label in the previous column. The keys are Next Trckng/Dschrg, Next Full, Next Qtrly, Next Mdcr. ...
-1
votes
0answers
41 views

How to handle List<?> with HTML Unit?

In HTML Unit I have a line of code that I am not sure what to do with. I have been using the following code to arrive at a webpage. Works great and is not a problem. final WebClient webClient = new ...
-2
votes
1answer
31 views

why my xpath query doesn't work?

my DTD and XML: <!DOCTYPE test [ <!ELEMENT team(owner+)> <!ATTLIST team name ID #REQUIRED coach IDREF #REQUIRED > <!ELEMENT owner (#PCDATA)> <!ELEMENT ...
0
votes
2answers
42 views

xpath - why my query does not works?

here is my DTD + xml: <!DOCTYPE test [ <!ELEMENT team(owner+)> <!ATTLIST team name ID #REQUIRED coach IDREF #REQUIRED > <!ELEMENT owner (#PCDATA)> ...
1
vote
1answer
17 views

Scrapy xpath how to

My spider needs to be somewhat adaptable for the site I am scraping in that the info I need to fetch is at times in div[1] and at other times in div[2]. Here's an example: item['details'] = ...
0
votes
1answer
54 views

Dynamic search through xml attributes using lxml and xpath in python

I am working to move nexted xml data into a hierarchical data frame. I was able to get all of the data out of the xml thanks to help on SO. However, now, I am working to clean up the data that I ...
0
votes
1answer
32 views

How can I test for a valid index

It is legal to have XPath that is "/root/name[bogus = 'dave']" where the bogus node does not exist. It will return null on a SelectSingleNode. But XPath that is "/root/name[5]" where there are only 4 ...
0
votes
0answers
31 views

Trouble parsing HTML with CURL, DOMXPath, PHP and iterating into an array

I know it's probably my lack of experience with PHP, but I've been working on the same thing for like 5 hours now. I'm so fed up with it. I'm able to return the 10 links I'm scraping, but I can't ...
1
vote
2answers
23 views

Not able to extract exact text using XPath

I am trying to get the text "7 days ago" from the following html using xpath. Using the xpath //div[contains(@class,'fnt20')] I am able to get to the text within the div but I want to get to the exact ...
1
vote
3answers
51 views

lxml find <div> with id='post-[0-9]*' [duplicate]

I am trying to find all div tags with id begins with "post-{here a lot of digits}" I tried something like this: tree.xpath("//div[starts-with(@id,'post-[0-9]')]") But does not really work. Is there ...
1
vote
2answers
43 views

XSLT 2.0: Transforming an element including all ancestors without using a foreach

I'm currently trying to transform an XML file to several output XML files by taking certain element of it and traversing up the ancestors of the chosen elements. For example: Source XML: <?xml ...
1
vote
2answers
26 views

XSLT 2.0: Limit the ancestor axes to a certain element/s level up the document tree

I'm seeing a quite odd behaviour, when trying to limit the results given by applying ancestor::* to an element I always get an extra ancestor although is expressly excluded by the predicate. Here the ...
-1
votes
1answer
36 views

How to convert XML file (String) to a valid document?

I have XML file as a string and i want to convert it to DOM document in order to parse it using XPath, i use this code to convert one String element to DOM element: public Element convert(String xml) ...
0
votes
1answer
65 views

selenium findElement by another thing than By.id

I'm quite new to this wonderfull tool that selenium is, and i'm trying to make some examples tests in my web app (html/JS). I managed to select some (most) elements withtheir id with the command ...
0
votes
1answer
25 views

XPath - find upcoming birthdays

How can I find contacts with upcoming birthdays, say within 10 days, given the following XML? <contacts> <contact> <name>bob</name> ...
0
votes
2answers
37 views

Umbraco Multiple Sites, Same Template but different CSS files

I have multiple sites residing inside one umbraco CMS for one client. The sites has many design items in common but the designer had to make one shared css file with a few different ones specific to ...
0
votes
1answer
24 views

TransformXml task with InsertAfter - How to use function?

I'm trying to use the <TransformXml> task in my web projects (.csproj/.vbproj) to Transform configuration files and other XML files. I use an msbuild script (powershell) to build and package my ...
0
votes
1answer
55 views

JavaCC - parse a step of an XPATH expression

I'm trying to write a JavaCC script for a (simple) XPath parser and I'm having problems with the part to parse individual steps. My idea of the grammar is this: Step ::= ( AxisName "::" )? NodeTest ...
0
votes
2answers
25 views

XPath: Count true child nodes with different names?

Is it possible to count the following TRUE nodes (with different names) with XPath in the XML below? <my:templateBase> <my:executive>true</my:executive> ...
1
vote
1answer
41 views

XPath expression to get all preceding siblings UNTIL condition met

Here is my XML: ... <table></table> <p class="source"></p> <p class="notes"></p> <p class="notes"></p> <p class="notes"></p> <p /> ...
1
vote
1answer
24 views

Group Parsed XML Elements with PHP

What I am working with is a list of sightings for birds for an area. Sometimes the same bird is reported twice or three times. I want to group all sightings of a particular bird by it's name and then ...
0
votes
1answer
20 views

XSLT syntax for extracting text and putting it elsewhere?

I have an XML document that looks roughly like this: <doc> <header> Here is a header thing. </header> <docBody> Here is a long string of text in which other tags ...
0
votes
1answer
39 views

Format Date in Xpath

I am editing the dispform.aspx in SharePoint Designer 2010, as to not show the created by fields in the announcement lists. I notice that the expire ([Expires]) date field is off. Example: I have an ...
2
votes
2answers
38 views

split xpath string by axes expression

I have XPath like this: something1/something2/AXES::tag/something3... where AXES is limited set of words: child attribute ... so I have to split this xpath into three parts: ...

1 2 3 4 5 176