2
votes
4answers
95 views
How can I translate this XPath expression to BeautifulSoup?
In answer to a previous question, several people suggested that I use BeautifulSoup for my project. I've been struggling with their documentation and I just cannot parse it. Can somebody point me to …
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
1answer
10 views
Xpath query exclude ancestors of a particular namespace
The following xpath query
gets nodes except where the ancestor is a particular type
(/def:Image|//def:Canvas|//def:TextBlock|//def:TextBox)[not(ancestor::clpm:EditableText)]
however i want to be …
0
votes
5answers
96 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
4answers
42 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
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
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>
…
1
vote
4answers
57 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
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 …
1
vote
2answers
48 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
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 different text say …
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
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 …
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");
…
0
votes
2answers
62 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>
…
