Я хочу получить таблицу с веб-страницы:
<table class="coupon-row-item coupone-labels">...</table>
Я использую
Element market = page.select("table[class=coupon-row-item coupone-labels").first();
И получаю
Исключение в теме "main "org.jsoup.select.Selector $ SelectorParseException: не найден сбалансированный маркер в 'class = купон-элемент строки-купона-метки'
Полная функция
protected void getMainMarked(ArrayList<String> arrLinks) throws IOException {
Document page = Jsoup.parse(new URL(arrLinks.get(0)), 5000);
Element market = page.select("table[class=coupon-row-item coupone-labels").first();
}