From 40d44c32fd8a0777bd5f8ed98460d262e81a03b6 Mon Sep 17 00:00:00 2001 From: Oleg Plakhotniuk Date: Mon, 30 Mar 2015 21:36:35 -0500 Subject: [PATCH] [ideel] Boldly scrape the orders which no man has scraped before. Fixes #1817 --- modules/ideel/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ideel/browser.py b/modules/ideel/browser.py index e00bd862..9e853bfa 100644 --- a/modules/ideel/browser.py +++ b/modules/ideel/browser.py @@ -73,7 +73,7 @@ class OrderPage(IdeelPage): def items(self): for tr in self.doc.xpath('//table[contains(@class,"items_table")]' - '/tr[td[@class="items_desc"]]'): + '//tr[td[@class="items_desc"]]'): label = tr.xpath('*//div[@class="item_desc"]//span/text()')[0] url = tr.xpath('*//div[@class="item_img"]//@src')[0] onclk = tr.xpath('*//div[@class="item_img"]//@onclick')