I am trying to select the infobox on Wikipedia's Google entry page: http://en.m.wikipedia.org/wiki/Google

So, I call:

contentDiv = document.select("div[id=content]").first();

Which works as expected, then I do:

Elements infoboxes = contentDiv.select("table[class=infobox]");

Then I check infoboxes.isEmpty() and I am stunned to discover that it is empty!

I checked and verified that the element contentDiv contains the following:

<table class="infobox vcard" style="width: 22em;" cellspacing="5">

So, why does contentDiv.select("table[class=infobox]") return empty???

UPDATE: I tested the above with contentDiv.select("table[class=infobox vcard]") and it works fine! This is weird since I know that unlike the table.infobox.vcard notation which only selects the exact multiclass element, table[class=infobox] should select all tables that have at least infobox in their listed classes.

BTW, I tested the code, with a different Wikipedia entry, containing:

<table class="infobox biota" style="text-align: left; width: 200px; font-size: 100%;">

And that contentDiv.select("table[class=infobox]") behaves exactly as expected, returning that table element as the first item in infoboxes.

Any idea why the inconsistency? What could explain this odd behavior?

Is it possible that I just stumbled on a Jsoup bug?

(I'm using jsoup-1.5.2, not the latest but I don't need HTML5 support and for various reasons I can't upgrade immediately to the latest 1.6.1).

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

The [attributename=attributevalue] selector is an exact match. This is specified in CSS selector spec (emphasis mine):

[att=val]
        Match when the element's "att" attribute value is exactly "val".

You want to use the [attributename~=attributevalue] instead:

Elements infoboxes = contentDiv.select("table[class~=infobox]");
// ...

or, better actually, the .classname selector:

Elements infoboxes = contentDiv.select("table.infobox");
// ...

See also:


As to your test with different Wikipedia entry, I can't reproduce this. But I can tell that this page contains another <table class="infobox"> which must be the one you're actually retrieving.

link|improve this answer
I must be an idiot: I have been paying attention all that time to the fundamental difference between the tag.["class=classname"] (exact match) notation vs. the tag.classname (non-exact) notation, yet I swapped them, then wasted too much time figuring out what's happening. +25. – Regex Rookie Oct 11 '11 at 12:36
You're welcome :) – BalusC Oct 11 '11 at 12:45
My grateful thanks to you was implied in the +25. :) – Regex Rookie Oct 11 '11 at 13:02
Yes I understood that. Thank you :) – BalusC Oct 11 '11 at 13:03
feedback

Your Answer

 
or
required, but never shown

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