At the moment (Jsoup 1.7.1) there no AND for selector available. But you can do this with two select()
's (like in your example #2):
Elements tables = document.select("table[width=100%]").select("table[align=center]");
You can also post a feature request: https://github.com/jhy/jsoup/issues
Read full article from html - Jsoup how to select a tag with multiple attributes - Stack Overflow
No comments:
Post a Comment