Checking page position in Google search results

Is there a way to check the position of a page on Google (I do not mean viewing, in only one request). There seems to be a problem with the Google SOAP Search API for a long time, as I know.

+4
source share
2 answers

You can always try with functional testing tools . Like selenium or canoo web test .

What you need to do is drop the pages (add keywords to the google search input field and then simulate clicks on links to the following pages in a Google search).
And on each page, you just need to check if there is a page name, description or link on the page.
The only problem is that you can check (its google limit) only 100 pages (1000 results for the whole keyword (s))

+2
source

Have you considered screen shielding? I recently started using the Selenium and Selenium IDEs to take screenshots of web pages, and I found that it was easier than I thought to pick up.

For example, using the Selenium IDE, you can click on the links / pages you want to visit and will generate jUnit3 / 4, C # and several other languages ​​automatically.

There were several projects that I had in the background that found a solution after collecting it. Link to Selenium website

+1
source

All Articles