Tagged Questions

0
votes
5answers
87 views

Any good Java HTML parsers?

I was using Cobra until now because of how easy it was but unfortunately it had some problem with a few test cases. Does anyone suggest a tried-and-tested library? I've tried Cobra's built in one and …
0
votes
3answers
42 views

Why my XPath request to XML file on web doesn’t work?

There is an XML file with exchange rates http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml: <gesmes:Envelope> <gesmes:subject>Reference rates</gesmes:subject> …
0
votes
4answers
41 views

Need some help with XPath expression. One works, the other doesn’t…

I'm using the COBRA HTMLParser but haven't had luck parsing one particular tag. Here's the source: <li id="eta" class="hentry"> <span class="body"> <span class="actions"> …
0
votes
5answers
22 views

How to avoid a SAXParseException using Xerces when HTML file includes mdash?

I am using the Xerces implementation within JDK6 to perform XPath queries on an HTML 4.0 transitional document. With the following code: XPath newXPath = XPathFactory.newInstance().newXPath(); …
1
vote
4answers
56 views

XML parsing with C#, XPath

Mine is a general question on XML parsing practices. Lets say we have an XML document, and we use XPath to get some node from that document: XMLNode …
0
votes
2answers
15 views

Can I link maxOccurs in my schema to a value of another attribute in the target xml file?

I'm defining an xml schema for a file that looks something like this: <data> <config><segmentcount value="10"/></config> <foos> <foo> …
0
votes
2answers
61 views

XPath expression to select all XML child nodes except a specific list?

Here's the sample data: <catalog> <cd> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <country>USA</country> …
0
votes
2answers
50 views

Getting content of a div (including child tags) with DOM

Hi, i am using DOM to get content of div tag but inner html part is not shown. Function is: $dom = new DOMDocument; libxml_use_internal_errors(true); $dom->loadHTMLFile("$url"); …
1
vote
2answers
46 views

Better usage or alternative for starts-with in xpath.

I'm having a problem with a xsl transformation on a extended xml JUnit report file. I've extended the file as follows: <testcase classname="net.luminis.osgitest.test.adhoc.AdHocTest" …
0
votes
1answer
42 views

XPath (C#) throw an exception: Namespace Manager or XsltContext needed

Hello folks: I ask a question about using XPath function there But I meet a problem about this exception: [System.Xml.XPath.XPathException] = {"Namespace Manager or XsltContext needed. This query …
0
votes
4answers
66 views

C#: XPath to select node with attribute containing a substring?

Hi folks: Could I use XPath to select country node whose code containing UK? <country-list> <Country code="TW,UK,MY" /> <Country code="US,CA,MX" /> <Country …
0
votes
3answers
31 views

Is there a way to dynamically get an xpath of an element during runtime in Selenium

Is there a way to return the xpath of an element in Selenium during runtime whos xpath changes every time you return to the page? I need to extract a random number from the xpath of the element. Ex: …
0
votes
3answers
48 views

ASP.NET 2.0: how to use XPath?

Hello guys: If we can get a collection of x nodes via XPath in ASP.NET 2.0? Then doing checking per the attrs of them. <x-list> <x id="1" enable="On" url="http://abc.123.dev"/> <x …
0
votes
2answers
14 views

Asserting the background image of a page with selenium

Hey, I have an app in which the user can change the background image of their profile page. Therefore, I wasnt to assert that, when the user changes the image, the image actually changes. I can't …
0
votes
1answer
16 views

changing value of xml attribute queried by xpath query ?

I use javascript xpath queries (document.evaluate(...)) to read and modify parts of xml/svg/html documents. Setting the nodeValue of queried element and text nodes is no problem. but when setting …

1 2 3 4 5 47 next
15 30 50 per page