up vote 55 down vote favorite
38
share [g+] share [fb]

I know there are some online regex evaluators.. very useful, matching in real time. They are like web applications of RegexBuddy.

I was wondering if there is a similar thing for xPath selectors? I am just learning them and it would be valuable to me.

Is there an online tester that allows you to input XML and then an xPath selector and match (live would be better, but I doubt someone has written a JavaScript interpreter?) them?

Thanks

link|improve this question

feedback

closed as not constructive by Kev Sep 11 '11 at 11:21

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

12 Answers

up vote 17 down vote accepted

Edit: The XPath Visualizer for IE now has a new, safer home, thanks to the kindness of Lars Huttar. Also there is the XPath Visualizer for FF.

The XPath Visualizer has been available for more than 10 years and has helped thousands of people learn XPath the fun way. Available for IE and for FireFox.

The XPath Visualizer is a popular tool for learning XPath by playing with XPath expressions. Free and open source.

Allows any XPath expression to be evaluated against a given XML document and displays the results hi-lighted in the xml document (if they are node(s)) or in a separate box (if the results are atomic values).

Allows xsl:variable-s to be defined and then used in XPath expressions.

Allows xsl:key-s to be defined and then referenced by key() functions within XPath expressions.

link|improve this answer
29  
warning, according to google the linked site contains malware: safebrowsing.clients.google.com/safebrowsing/… – Peter Recore Dec 23 '09 at 19:45
I will be considering moving the download to a safe site. Any suggestions? – Dimitre Novatchev Apr 13 '10 at 13:09
@Dimitre, Firefox version can be accessed from somewhere? – Flack Jan 7 '11 at 3:17
1  
@Dimitre. In fact I am. It really messes with me to start IE just for XPV :) – Flack Feb 3 '11 at 7:51
2  
@Flack: Yes, and thank you for helping to make this possible. – Dimitre Novatchev Feb 27 '11 at 22:05
show 14 more comments
feedback

I notice that the only "online" checker in the answers seems a bit clunky. It requires submission to a server, and it doesn't handle namespaces properly.

I thought I could do better, and that such a tool would be quite useful, so I made one. I realize it is slightly self-promoting to mention it here, but it does specifically answer the question, I think!

http://chris.photobooks.com/xml/default.htm

Mine can apply an xpath expression to an arbitrary XML document and display the results. It can also beautify, or pretty-print an XML document, and apply an XSLT transformation to it. All processing is done by the browser, and it should work in IE6+, Firefox, Opera, Chrome, and Safari.

Please let me know if you encounter any issues with it!

link|improve this answer
Why do I have to press refresh? It should use some AJAX magic! That, and displaying/highlighting only the matches. (Just like Rubular does for regex.) – ashes999 Jan 6 '11 at 17:08
1  
Sorry, the "refresh" button does not actually refresh your browser, it merely re-executes the JavaScript rendering process. I guess I should rename it, huh? There is no AJAX because no XML is ever sent to the server at any time--it's processed 100% in JavaScript. I will add highlighting when I have time; keep in mind this is a personal project for me. Nobody pays me for this! ;) – Chris Nielsen Jan 7 '11 at 4:07
2  
Very useful - thanks!! – mm2001 Feb 23 '11 at 15:31
1  
awesome little tool saves me having to download the xpath visualiser which seems to crash alot – Exitos Jun 22 '11 at 10:07
2  
Sure is! Right click on the page and select "View Source!" ;) There's no explicit license. I'd appreciate it if you'd consider it to be under the same creative commons license as any other StackOverflow post. The source is not exactly production quality, so caveat emptor. – Chris Nielsen Oct 17 '11 at 12:57
show 1 more comment
feedback

This is not an online tool; instead it's a Windows app, more along the lines of RegexBuddy, but for XPath.

XPathVisualizer.

screen shot

link|improve this answer
Wish I'd know about that a couple of years ago. – scope_creep Oct 5 '09 at 0:15
Whoa, thanks for this one. – Kuroki Kaze Apr 13 '10 at 13:09
General observations: A good first exercise in producing a WinForms application. Not too-advanced, with too restrictive platform requirements, and a little bit too late. The real XPathVisualizer has been around since the year 2000 with thousands of downloads each month. XPath is clearly not a good area in which to try to rediscover the wheel. – Dimitre Novatchev Apr 24 '10 at 19:24
@Dimitre Novatchev, I can understand being proud of your own project, but at least resolve that your site is flagged as malware! – Aardvark Nov 12 '10 at 17:21
@Aadvark: This is not "my site". Please, propose to host the XPath Visualizer and I might consider it. :) – Dimitre Novatchev Nov 12 '10 at 17:30
show 3 more comments
feedback

Yep! Try the XPath Checker extension for Firefox. It's a handy tool.

link|improve this answer
This looks really cool! – alex Mar 27 '09 at 4:27
XPath Visualizer didn't work for me in Firefox 3.5 on Ubuntu – jabley Aug 27 '09 at 10:31
+1 Great extension! – MatÄ›j Zábský Dec 12 '11 at 15:01
feedback

Here is a nice one: http://www.xpathtester.com/

link|improve this answer
Although I've only tried simple xpath expressions, so far xpathtester has worked well for me too. – coder_tim Jan 6 '11 at 23:07
I've been working with it for a while and I really like it. It has a Clean interface and instead of marking the results over the XML, it generates the resulting node/list/text. – CaBieberach Jun 17 '11 at 14:16
feedback

Here is one...

XPath Query Expression Tool

link|improve this answer
feedback

You can also use Notepad++ with it's XMLTools plugin - it has xPath evaluator

link|improve this answer
feedback

I found the following tool the most helpful.

Allans Online XPath Tester

The other tools mentioned below either required a particular browser or had some issue with loading xml or using some of the more obscure XPath expressions I was using. This tool did not.

link|improve this answer
1  
If the tool I mentioned in my answer has such issues, please do let me know so I can fix it! Thanks! – Chris Nielsen Nov 20 '09 at 22:52
feedback

Remove It Permanently, a firefox extension available on AMO, has such visualization functions. It would be nice if it had firebug type power for the slightly advanced adblocker.

screenshot

link|improve this answer
feedback

If you're on Firefox, you can use Firebug + Firefinder, which enable you to filter elements based on XPath expressions, and even post the matched code to jsbin in a snap.

link|improve this answer
feedback

I'll add one I made last year to the list. It's fairly primitive compared to the others and is best for quick checks. It's .NET/Silverlight based.

link|improve this answer
-1 I'm sorry but it outputs only text and not the XML nodes. – bluish Sep 28 '11 at 14:04
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.