You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
results in: {'nextpage': u'http://site.com/page1'}
which is simply the first link, not the link to the next page as I would expect.
Capturing to a list with:
returns: {'nextpage': [u'http://site.com/page1', u'http://site.com/page2', u'http://site.com/page3', u'http://site.com/page2']}
i.e. a list of all links, not a list with just the link to the next page.
It appears as if scrapemark is ignoring the title attribute's value when it can capture the href attribute's value.
Am I doing something wrong here, is this simply a quirk we'll have to be aware of, or is this a bug?
The text was updated successfully, but these errors were encountered:
First, thanks for this wonderful tool!
I have the following problem: when trying the following snippet:
results in:
{'nextpage': u'http://site.com/page1'}
which is simply the first link, not the link to the next page as I would expect.
Capturing to a list with:
returns:
{'nextpage': [u'http://site.com/page1', u'http://site.com/page2', u'http://site.com/page3', u'http://site.com/page2']}
i.e. a list of all links, not a list with just the link to the next page.
It appears as if scrapemark is ignoring the title attribute's value when it can capture the href attribute's value.
Am I doing something wrong here, is this simply a quirk we'll have to be aware of, or is this a bug?
The text was updated successfully, but these errors were encountered: