Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

MareLuce

macrumors 65816
Original poster
Sep 26, 2010
1,156
494
In Safari, is it possible to automate opening 3 websites on 3 different tabs ?

Context:
I'm researching a vacation. For a given stop, I would like to launch and open 3 websites, all at once.
1) Google Maps
2) TripAdvisor
3) Yelp

A great second step would be to automatically paste in the search words of the place I'm searching for...

How could I automate this workflow?
 
How could I automate this workflow?
Create a new workflow that receives text from Safari and add the following AppleScript
Code:
on run {input, parameters}
    open location "https://www.yelp.com/search?find_desc=" & (input as text)
    open location "https://www.google.com/maps/search/" & (input as text)
    open location "https://www.tripadvisor.com/Search?&q=" & (input as text)
end run
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.