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.
4
votes
0answers
409 views
Is this XPath query on parsing XHTML wrong? using TouchXML
I have been trying to parse a XHTML doc via TouchXML, but it always can't find any tags via XPath query.
Below is the XHTML:
XHTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
3
votes
0answers
116 views
Web Config Transforms: Insert If Not Exists
I would like to apply a transformation if and only if a matched element does not exist in the target. Trying various xpath expressions using http://webconfigtransformationtester.apphb.com/ but no luck ...
2
votes
0answers
37 views
How to escape “>” character in postgres version 9.2
How do i make the > sign display as is in PG version 9.2 ? I do not want it to show as >.
Query in postgreSQL
SELECT
XPATH ...
2
votes
0answers
81 views
IE9 sees sibling HTML nodes as descendants
I'm investigating automated testing of an existing web application. I ran into the following problem while trying to select certain document nodes by XPath.
On a particular screen, the application ...
2
votes
0answers
107 views
Jackrabbit XPath query throws exception after ugrade to JR 2.4.2
We are currently working on upgrading Jackrabbit from 1.6.5 to 2.4.2 on our system. we are facing problems on some XPath queries that used to work on the 1.6.5 perfectly, and now it throws ...
2
votes
0answers
421 views
Invalid xPath error in Selenium (with a valid xPath)
I'm testing a Python application using pyccuracy, which has a selenium driver.
My test results are presenting some instability issues with xPaths. Sometimes I get an Invalid xPath error, with a valid ...
2
votes
0answers
443 views
WinJS: use a XPath method with a responseXML object
I have a problem with a Windows8 application. Here is the simplified portion of code:
return WinJS.xhr({ url: url }).then(function (response) {
var response = response.responseXML;
var ...
2
votes
0answers
159 views
InfoPath: Passing nodes to C# from form rules
I have just discovered the very useful xdExtension keyword which allows you to execute code directly from a form rule. However any nodes passed into the called function are of type ComObject and there ...
2
votes
0answers
395 views
-[NSXMLNode nodesForXPath:error:] returns empty array while it should not
I am trying to parse an Atom feed. I have extended NSXMLNode with this method through a category:
- (NSString *)stringValueForNodeAtXPath:(NSString *)XPath error:(NSError **)error {
NSArray *nodes ...
2
votes
0answers
513 views
Find the control XPath on Focus in WebBrowser control
I had developed a windows application
with WebBrowser control, which can interact with windows control using this sample provided
...
1
vote
0answers
34 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 ...
1
vote
0answers
42 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
vote
0answers
45 views
running selenium commands with only chrome console
I would like to know(if possible), while using selenium for testing UI, can the selenium commands be run via chrome console(developer console) similar to running/testing xpath for example like using ...
1
vote
0answers
37 views
How to get correct XPath result
When I use XPath I use the following code:
NSArray *version = [doc nodesForXPath:@"/app/version[1]" error:nil];
And if I print the array I get this:
"GDataXMLElement 0x80d5030: {type:1 ...
1
vote
0answers
17 views
xpath assertion with wildcards failed with soapUI Maven plugin
I'm using wildcards in xpath assertion, the checkbox was checked and cases passed in soapUI client.
However all of those assertions with xpath + wildcards failed in my Jenkins job based on the mvn ...
1
vote
0answers
55 views
Implements DOMDocument to Array
Is PHP can implements DOMDocument to array? I mean something like this:
XML:
<html>
<head></head>
<body>
<div></div>
</body>
...
1
vote
0answers
71 views
Loop out values from a div tag with the xpath and html agility
I'm trying to scrape a website. a comparison site and in such exists a div tags class several times so I would loop out information from each div tag to get something like this in my "div" list item:
...
1
vote
0answers
55 views
lxml._ElementTree.getpath(element) returns “*” instead of tag names for elements in non default name space
Please help to make getpath() to return full tag names in getpath() xpath or to find workaround
I'm trying to generate xpath to element in a lxml.etree._ElementTree. ElementTree is generated by ...
1
vote
0answers
54 views
jmeter's xml log using ant and browser looks different
I made some changes in jmeter-results-report_21.xsl to show me the test case name in the html report. It works fine when open directly in the browser, but when I use the ant to generate the report, ...
1
vote
0answers
63 views
Finding all the ancestors of the current XML node
I want to get all ancestors of current xml node. For example:
<nav url="navurl">
<l lo="def">XML Parsing</l>
<m url="M Level 1">
<l ...
1
vote
0answers
170 views
Selenium RC C# For each matching xpath node DO
What I'm trying to accomplish is for each element picked by xpath do some action.
To be precise
var localizator = LocalizatorGenerators.SelectOptionLocator(labelName);
decimal ...
1
vote
0answers
99 views
Basic XQilla XPath example
I am looking for a basic example of how to setup XQilla to use an XPath query on a std::string containing XML. The example on the XQilla site appears to use XQuery on either a file or an URL.
1
vote
0answers
107 views
Is it possible to query Scala xml.Node by XPath?
I need to use some complex XPath queries on scala.
Is there a library that can execute XPath queries on Scala XML nodes?
Something like this:
val node: xml.Node = ...;
val result = ...
1
vote
0answers
102 views
iPhone HTML Parsing child elements with XPath
I'm trying to get the 'title' fields and 'background-color' style out of the element. - I'm so new to objective-c and this is most likly easy...
My HTML (sample repeats with different <TD ...
1
vote
0answers
56 views
How can I use selenium to drop in a specific place?
I am trying to write a selenium test for a drag and drop operation.
I am dropping in a tr but I need to specify whereabouts on the row as the tr itself covers 5 slots (this is for a calendar app) but ...
1
vote
0answers
57 views
TinyXPath: Failure to find relative descendant
The small footprint of TinyXPath makes it an attractive package for simple XPath queries. However, some of its functionality seems not to work the way one (newbie) would expect it to. Specifically, I ...
1
vote
0answers
108 views
How can I match <svg><g> in Capybara with xpath
The title pretty much says it. I can't seem to match those tags. I've tried it in an online xpath tester as well.
I saw mention of namespaces so I was hopefully in svg:svg working. Is there more to ...
1
vote
0answers
77 views
I want to fetch all child tab sub child atrribute value
This is my xml:
<root>
<child1 entity_id = "1" value= "Asia">
<child2 entity_id = "2" value = "india">
<child3 entity_id = "3" value = "Gujarat">
...
1
vote
0answers
132 views
Modify HTML tag using xpath and javascript
I want to modify this HTML tag:
<html>
<head></head>
<body>
<div id='content'></div>
<div id='unused'></div>
...
1
vote
0answers
131 views
XPathNavigator with xpath gives wrong node back
I try to get some specific values from an xml config. See example below.
<?xml version="1.0" encoding="utf-8"?>
<ExcelConfig>
<ExcelDocument name="Customer" type="flat">
...
1
vote
0answers
62 views
DOM4J Xpath Truncating Results
We are maintaining an application that heavily relies on DOM4J and Xpath. Once in a while we see a strange behaviors with results of XPath execution via DOM4J: The text result would simply be ...
1
vote
0answers
141 views
Import module in XQuery (PHP + Zorba)
I'm writing an application in php to query huge xml files (GB) with Zorba XQuery processor (v2.6.0) and to do so I'm trying to use the XML Streaming described here:
...
1
vote
0answers
54 views
Performing image scrapping using YQL with lowest resources usage possible i.e. lowest number of queries
I am trying to perform some image scrapping tool which enables the user to scrap all the images contained within a given page using xpath process the scrapped images to find which have an alt tags and ...
1
vote
0answers
510 views
Getting an error: The remote server returned an error: (401) Unauthorized. from WebClient class
item = 535;
String URI = "http://localhost:3033/WebFormDesigner.aspx?fm_id=" + item.ToString();
//String URI = "http://www.google.com";
WebClient wc = new WebClient();
Stream s = wc.OpenRead(URI);
...
1
vote
0answers
93 views
Change the versionCode in android manifest in python and save back the file
I am trying to automate changing my VersionCode to match the build number of SVN. I am using python to parse the Android Manifest and trying to save the file back.
I am using Element tree to find the ...
1
vote
0answers
328 views
Get xpath from jaxb object
Is there a built in library that will allow be to get xpath expression or value from a jaxb property.
For example, if I the following class is generated by jaxb (annotations removed)
@ ...
public ...
1
vote
0answers
194 views
Xpath syntax with HTML parsing in iOS app
I'm using Xpath in my iOS app, I want to parse an HTML page from Wikipedia and grab some informations.
I have a problem with my xpathQueryString to catch the "(a) (/a)" attributes with this kind of ...
1
vote
0answers
87 views
function importxml google spreadsheet
I have to learn xpath and I try to using importxml function in google spreadsheet but it doesn't work.
Using firefox I found 2 addons that show me the xpath code, ("firebug" and "xpath checker").
...
1
vote
0answers
60 views
Easier XQuery statement
I ask myself if I could make the following statement simpler?
Can you help me out?
<Vorlesungsverzeichnis>
{
for $sws in distinct-values(doc('uni')//Vorlesung/SWS)
order by $sws
return
...
1
vote
0answers
58 views
is there something I can do to HTML pages prior to XPath?
Is there something I can do to cURL acquired HTML to allow for faster or more efficient XPath queries on the DOM? Is it more efficient to reference starting from html/../.. or by [@??]. I've heard of ...
1
vote
0answers
91 views
How to deal with parentheses in a text node in xpath?
Say we have the following HTML code
<label for="467578">AgendaShowCapacity (1 remaining)</label>
I tried with the following xpath expression in Chrome but can't locate to that element:
...
1
vote
0answers
279 views
Remove XML element using WiX XmlConfig
I have this XML file:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
...
1
vote
0answers
257 views
Apache Camel / xpath operation result detection
Given a Camel route that is supposed to extract some inner parts of an XML message, create a new message from it then pass it on.
from(SUB_EXTRACT_XML)
.setExchangePattern(ExchangePattern.InOut)
...
1
vote
0answers
104 views
Evaluating XPath function-based expressions in iOS
Is there any way to evaluate xPath expressions in iOS? For example, an expression like:
concat(xyz:field3, "!")
EDIT: I'm only concerned with function-based xPath expressions (e.g. concat, ...
1
vote
0answers
87 views
Web scraping: How do I handle euro signs?
So I'm trying to scrape prices of a product on a website, and their HTML looks like this:
<div class="pricing_price">€12.99</div>
Now I've wrote a xpath query that gets price, and it ...
1
vote
0answers
401 views
JasperReports: Report with xml subreport xPath
I have a master report that call a sub report when a group change.
I pass two XML Documents that are the different datasource for the master and the sub report.
The subreport is printing , but every ...
1
vote
0answers
104 views
Read annotation from XSD by element XPath
I have XML document builded by XSD. Each element in XSD with annotation.
When i validate XML by XSD i can generate an XPath of error (using Stack), how can i read annotation from XSD with XPath of ...
1
vote
0answers
131 views
Xpath with js and google chrome
I have a code for generating xpath on click but i need to put that in an chrome extension. So how to do that?
Here is the code for generating xpath on click:
function get_XPath(elt)
{var ...
1
vote
0answers
65 views
Wpf Databinding MenuItem with XPath
My application uses a Menu with some MenuItems. Because of localization I would like to bind the Header property of the MenuItem to a node value in a xml file.
Here are the relevant parts of my ...
1
vote
0answers
641 views
Generate XPath from XSD in C#
Is there any sample code to generate all the Xpath values from an XSD file. Please let me know if there's a tool that will generate all the xpath values(for all elements & attributes) from an XML ...




