|
I'm curious to know if the script works for you on https:// pages?
because in getNextURL it only checks for http
if (nextValue.match(/^http:/)) {
shouldn't it be
if (nextValue.match(/^http:/) || nextValue.match(/^https:/)) { //fix by Vixay
?
Anyway I still can't seem to get it to work with one site.
Xpather shows correct results but I get an error saying nextLink not found.
It seems to me like the page is loaded using JS and later, so after the DOMLoadContent event fires, it still doesn't actually have the content it needs... just my guess...
i was trying it on
"https://myaccount.voiparound.com/clx/calls.php?month=2&year=2009"
to get the entire call list in one go and put it in excel...
|