0
votes
4answers
28 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 clas …
0
votes
3answers
51 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 Cobr …
0
votes
2answers
27 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:s …
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 …
0
votes
2answers
11 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>
<f …
1
vote
4answers
50 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 node1=XMLDoc.SelectSingleNode …
3
votes
1answer
156 views
XPath partial of attribute known
I known the partial value of an attribute in a document, but not the whole thing. Is there a character I can use to represent any value? For example, a value of a label for an in …
3
votes
7answers
370 views
XSLT to sum product of two attributes
Hi All
I have the following XML source structure:
<turnovers>
<turnover repid="1" amount="500" rate="0.1"/>
<turnover repid="5" amount="600" rate="0.5"/> …
0
votes
1answer
11 views
Finding table values in watij using xpath
Hi,
I am using watij to automate my UI testing. I have many tables in a webpage. I need to find a table which has a width 95%. It contains many rows. I have to find each row with …
0
votes
3answers
28 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 …
1
vote
4answers
330 views
Which HTML element has the largest number of children of a certain type, for instance tags?
In any language, XSLT, PHP, Ruby, Perl, anything: how can I get the XPath or other path or identifier to the element containing the largest number of <p> tags?
2
votes
4answers
351 views
XPath: find link URL by link text
I have a well formed XHTML page.
I want to find the destination URL of a link when I have the text that is linked.
Example
<a href="http://stackoverflow.com">programming qu …
1
vote
2answers
42 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.AdHo …
0
votes
5answers
284 views
What pure Python library should I use to scrape a website?
I currently have some Ruby code used to scrape some websites. I was using Ruby because at the time I was using Ruby on Rails for a site, and it just made sense.
Now I'm trying to …
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. …
