How do I make multiple queries on a search engine?

2

Every day, I make the same 20 searches in Pub Med (http://www.ncbi.nlm.nih.gov/pubmed) to see if there are any new academic journals in my field. I was wondering if there is a way to automate this task. Is there a way to, say, open a chrome browser with 20 different tabs, each having the results of one search per tab?

PJazz

Posted 2016-09-27T02:07:34.960

Reputation: 121

What operating system are you using? – Nick McCurdy – 2016-09-27T10:29:06.717

Windows 7 is the OS – PJazz – 2016-09-29T03:44:10.613

I don't know Windows scripting, but I would personally bookmark all those pages into one folder (right click tab bar > bookmark all tabs...) and open them together (right click bookmark folder > open all in tabs) whenever I wanted to do research. – Nick McCurdy – 2016-09-29T07:57:23.663

Answers

1

You can easily do it from the configuration of your browser. But each time that yo open your browser you will open all the tabs.

  1. Just open your searches in Firefox
  2. Go to menu - options - general tab - use actual pages

The next times you open the browser all the tabs are opened.

mortueta

Posted 2016-09-27T02:07:34.960

Reputation: 102

0

I do this all the time. Make each of your queries and copy them from the url. Next copy each query and past it into notepad; all 20. Next add this code to each of them:

Create a batch file to open a URL:

Firefox

start firefox http://www.ncbi.nlm.nih.gov/pubmed/?term=computer+science --new-tab
start firefox http://www.ncbi.nlm.nih.gov/pubmed/?term=systems+admin+ --new-tab
... 20 times

Chrome:

start chrome http://www.ncbi.nlm.nih.gov/pubmed/?term=computer+science --new-tab

Then save your notepad file: Save-As, and name it jobquery.bat where .bat is the files type.

Then all you have to do is open the batch file to look those 20 queries each day.

Note: This is the easiest and most basic principle. You could get fancy and create a loop and read from a text file where each line will execute a new search based on a template with variables, but that would be a task for a person who loves to write code for the sake of writing code.

ejbytes

Posted 2016-09-27T02:07:34.960

Reputation: 1 819