scraping only the 2nd page - X page

bhseo

A-Parser Enterprise License
A-Parser Enterprise
please help with this task:

i want to load a list of keywords and aparser will scrape the results for each keyword on google. however, i want to only save the results that were found on the 2nd and 3rd page of google. i DONT want to save the first page results. additionally, in the results file, i want to append the keyword used for that result. for example

url1 - kw1
url2- kw1
url3- kw1
url4 -kw2
url5- kw2

etc. i just want to know what keyword created that result.

please help me with this, thanks so much!
 
Set the output of specific page of search results can not. But it is possible to output all the elements between the specified boundaries. For example, if on each page is 100 links, then to display all the results from the second page with keywords, you need to specify a format of the result:
Code:
[% p1.serp.slice(100,p1.serp.max).format('$link - $query\n') %]
 
Back
Top